/* FILE: style.css */
:root {
  --color-bg: #ffffff;
  --color-surface: #fcfbf7;
  --color-surface2: #e3ebe6;
  --color-border: #dfdadf;
  --border-hover: #0a0809;
  --color-text-primary: #0d1117;
  --color-text-secondary: #793600;
  --color-text-muted: #393a3b;
  --color-accent: #e84393;
  --color-accent-2: #f59e0b;
  --color-accent-3: #10b981;
  --color-accent-4: #3b82f6;
  --color-accent-dark: #be185d;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 60px rgba(232,67,147,0.18), 0 8px 24px rgba(0,0,0,0.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-primary: 'Noto Sans', 'Noto Sans Devanagari', sans-serif;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --nav-height: 68px;
}

/* Gradients */
.grad-uae { background: linear-gradient(135deg, #00B15D 0%, #2D3436 100%); }
.grad-qatar { background: linear-gradient(135deg, rgba(136, 19, 55, 0.85), rgba(190, 18, 60, 0.6)); }
.grad-saudi { background: linear-gradient(135deg, #215a24, #7cdd81); }
.grad-malaysia { background: linear-gradient(135deg, #012169, #CC0001); }
.grad-korea { background: linear-gradient(135deg, #0047A0, #CD2E3A); }
.grad-japan { background: linear-gradient(135deg, #D32F2F, #FFCDD2); }
.grad-kuwait { background: linear-gradient(135deg, #007A3D, #2D3436); }
.grad-bahrain { background: linear-gradient(135deg, #cf125e, #F48FB1); }
.grad-oman { background: linear-gradient(135deg, #D32F2F, #43A047); }
.grad-romania { background: linear-gradient(135deg, #1565C0,  #FFC107); }
.grad-poland { background: linear-gradient(135deg, #ff0033, #f8d9e4); }
.grad-malta { background: linear-gradient(135deg, #D32F2F, #FFE0E0); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,67,147,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(232,67,147,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}
@keyframes langFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-6px); }
}
@keyframes langFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: 80px 0; }
.bg-surface { background-color: var(--color-surface); }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-4 { margin-top: 24px; }

/* Typography */
h1, h2, h3, h4 { color: var(--color-text-primary); line-height: 1.2; }
.section-header { margin-bottom: 48px; text-align: center; }
.section-header .overline {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-header h2 { font-size: 36px; font-weight: 800; }
.section-header p { font-size: 18px; color: var(--color-text-secondary);}

/* Navbar */
#site-header {
  height: var(--nav-height);
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: height var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  align-items: center;
}
#site-header.scrolled {
  height: 60px;
  box-shadow: var(--shadow-md);
  border-bottom: transparent;
}
#hero {
  scroll-margin-top: 80px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav-left, .logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-mark img {
  width: auto;
  height: 55px;
  vertical-align: middle;
  padding: 4px 0;
  object-fit: contain;
}
.site-name { font-size: 22px; font-weight: 700; color: #1d1c1c;}

.nav-center { display: flex; gap: 8px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-link:hover {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
}
.nav-link.active {
  color: var(--color-accent);
  font-weight: 600;
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  position: absolute;
  transition: var(--transition-base);
}
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 11px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg); top: 11px; }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg); top: 11px; }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 999;
  padding-top: 80px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-link {
  display: block;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border);
}

/* Buttons */
.btn-primary, .btn-outline {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background-color: var(--color-accent);
  color: white;
  border: none;
}
.btn-primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,67,147,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.btn-outline:hover {
  background-color: var(--color-accent);
  color: white;
}
.lang-btn { padding: 8px 16px; font-size: 14px; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

  /* ==================================================
                  HERO SECTION
     ================================================== */
.hero-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/korea-cover.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.hero-left { width: 55%; padding-right: 20px; }
.hero-right { width: 45%; display: flex; justify-content: flex-end; }
.card-stack { margin: 0 0 0 auto;}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    gap: 60px;
  }
  .hero-left, .hero-right {
    width: 100%;
    padding-right: 0;
  }
  .hero-right {
    justify-content: center;
  }
  .card-stack {
    margin: 0 auto;
  }
}

.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-surface-2);
  border-radius: 99px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffd700;
}
.hero-left h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}
.hero-sub {
  font-size: 20px;
  color: var(--color-bg);
  margin-bottom: 32px;
  max-width: 90%;
}
.hero-ctas { display: flex; gap: 16px; margin-bottom: 48px; }
.stat-strip {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.stat-item {
  font-size: 16px;
  font-weight: 600;
  color: #FFD700;
}

/* --- PREMIUM CARD STACK --- */
.card-stack {
  position: relative;
  height: 420px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  perspective: 1000px;
}

.premium-card {
  position: absolute;
  width: 260px;
  height: 360px;
  border-radius: 24px;
  /* Glassmorphism Border & Shadow */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); /* Smooth spring animation */
  transform-origin: center;
  overflow: hidden;
  cursor: pointer;
  top: 50%;
  left: 50%;
  margin-left: -130px;
  margin-top: -180px;
}

/* Internal Card Layout */
.card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
  position: relative;
  z-index: 2;
}

/* Card Light Reflection Effect */
.premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
  z-index: 5;
}

@keyframes shimmer {
  0% { left: -100%; }
  30%, 100% { left: 200%; }
}

/* Top Row (Route) */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
  padding-bottom: 12px;
}

.live-dot {
  width: 8px; height: 8px;
  background-color: #10b981; /* Green */
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}

/* Mid Row (Flag & Name) */
.card-mid {
  text-align: center;
  margin: auto 0;
}

.flag-wrap {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.card-mid h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.card-mid p {
  font-size: 16px;
  opacity: 0.9;
}

/* Bottom Row (Barcode) */
.card-bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0.7;
}

.visa-type {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.fake-barcode {
  font-family: monospace;
  font-size: 16px;
  letter-spacing: 2px;
  margin-left: 8px;
}

/* --- THE STACK POSITIONS --- */
.card-1 { transform: translateX(-40px) translateY(10px) rotate(-10deg); z-index: 1; }
.card-2 { transform: translateX(0px) translateY(-10px) rotate(0deg); z-index: 2; }
.card-3 { transform: translateX(40px) translateY(10px) rotate(10deg); z-index: 1; }

/* --- THE MAGIC INTERACTION (FAN OUT ON HOVER) --- */
.card-stack:hover .card-1 { transform: translateX(-110px) translateY(0px) rotate(-15deg); }
.card-stack:hover .card-2 { transform: translateX(0px) translateY(-30px) rotate(0deg); }
.card-stack:hover .card-3 { transform: translateX(110px) translateY(0px) rotate(15deg); }


/* --- ३. INDIVIDUAL HOVER --- */
.card-stack .card-1:hover {
  transform: translateX(-120px) translateY(-40px) scale(1.1) rotate(-5deg) !important;
  z-index: 50 !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6) !important;
}

.card-stack .card-2:hover {
  transform: translateX(0px) translateY(-60px) scale(1.1) rotate(0deg) !important;
  z-index: 50 !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6) !important;
}

.card-stack .card-3:hover {
  transform: translateX(120px) translateY(-40px) scale(1.1) rotate(5deg) !important;
  z-index: 50 !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .card-stack { 
    height: 340px; 
  }
  
  .card-1 { transform: translateX(-25px) translateY(10px) rotate(-12deg) scale(0.85); }
  .card-2 { transform: translateX(0px) translateY(-10px) rotate(0deg) scale(0.85); }
  .card-3 { transform: translateX(25px) translateY(10px) rotate(12deg) scale(0.85); }

  .card-stack:hover .card-1 { transform: translateX(-65px) translateY(0px) rotate(-15deg) scale(0.85); }
  .card-stack:hover .card-2 { transform: translateX(0px) translateY(-20px) rotate(0deg) scale(0.85); }
  .card-stack:hover .card-3 { transform: translateX(65px) translateY(0px) rotate(15deg) scale(0.85); }

  .card-stack .card-1:hover { 
    transform: translateX(-40px) translateY(-30px) scale(0.95) rotate(-5deg) !important; 
    z-index: 50 !important; 
  }
  .card-stack .card-2:hover { 
    transform: translateX(0px) translateY(-40px) scale(0.95) rotate(0deg) !important; 
    z-index: 50 !important; 
  }
  .card-stack .card-3:hover { 
    transform: translateX(40px) translateY(-30px) scale(0.95) rotate(5deg) !important; 
    z-index: 50 !important; 
  }
}
@media (max-width: 480px) {
    .card-stack { height: 300px; }
    .card-1 { transform: translateX(-20px) translateY(10px) rotate(-12deg) scale(0.75); }
    .card-2 { transform: translateX(0px) translateY(-10px) rotate(0deg) scale(0.75); }
    .card-3 { transform: translateX(20px) translateY(10px) rotate(12deg) scale(0.75); }
}

  /* ==================================================
                  COUNTRIES SECTION
     ================================================== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 8px;
}

.country-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.2s ease;
}

.country-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 32px 64px rgba(0,0,0,0.15),
              0 8px 24px rgba(232, 67, 147, 0.35);
  border-color: var(--color-accent);
  transition-delay: 0s !important;
}
.card-banner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-img {
  width: 72px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.country-card:hover .flag-img {
  transform: scale(1.1) rotate(-2deg);
}

.flag-emoji { font-size: 48px; }
.card-body { padding: 20px 24px 24px; }
.card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.card-stat { font-size: 13px; color: var(--color-accent); font-weight: 600; margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 16px; }
.card-link { font-size: 14px; font-weight: 600; color: var(--color-accent-4); }
.card-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
    padding: 4px;
  }
}

/* ==================================================
                  PROCESS SECTION
     ================================================== */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.step-circle {
  width: 44px;
  height: 44px;
  background: linear-gradient(270deg, #be185d, #e84393);;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(190, 24, 93, 0.25),
              0 0 16px rgba(232, 67, 147, 0.15);
}
.step:hover {
  transform: translateX(8px);
  background: transparent;
}
.step-icon {
  font-size: 27px;
  margin-bottom: 12px;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #be185d 0%, #ce9eb7 25%, #e84393 50%, #d4a8bf 75%, #be185d 100%);
  background-size: 200% 100%;
  border-radius: 999px;
  z-index: -1;
  animation: lineFlow 3s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(232, 67, 147, 0.6));
}
/* Guide Cards Grid Section */
.guide-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 7rem;
}

@media (max-width: 600px) {
  .guide-cards-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
  }
  .guide-card {
    margin-bottom: 15px;
  }
}

.guide-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  background-color: var(--card-bg);
  border-top: 4px solid var(--accent); 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Effect */
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
}

/* --- THEME COLORS (Exact hex codes from your image) --- */
.theme-blue {
  --card-bg: #F0F7FF;
  --title-color: #0F172A;
  --accent: #2563EB;
  --badge-bg: #DBEAFE;
}
.theme-green {
  --card-bg: #ECFDF5;
  --title-color: #064E3B;
  --accent: #059669;
  --badge-bg: #D1FAE5;
}
.theme-orange {
  --card-bg: #FFF7ED;
  --title-color: #7C2D12;
  --accent: #EA580C;
  --badge-bg: #FFEDD5;
}
.theme-purple {
  --card-bg: #F5F3FF;
  --title-color: #4C1D95;
  --accent: #7C3AED;
  --badge-bg: #EDE9FE;
}
.theme-cyan {
  --card-bg: #ECFEFF;
  --title-color: #0C4A6E;
  --accent: #0891B2;
  --badge-bg: #CFFAFE;
}
.theme-red {
  --card-bg: #FEF2F2;
  --title-color: #991B1B;
  --accent: #DC2626;
  --badge-bg: #FEE2E2;
}

/* Header (Icon and Badge) */
.guide-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* Icon Container */
.guide-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: var(--accent); /* Uses theme primary color */
  color: #FFFFFF; /* Pure white icon */
}

.guide-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* Badges (Top Right Pill) */
.guide-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: var(--badge-bg);
  color: var(--accent);
}

/* Typography */
.guide-card h4 {
  color: var(--title-color); /* Colored text for title */
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.guide-card p {
  color: #475569; /* Specific gray from image */
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1; /* Pushes the "Read more" link to the bottom */
}

/* Call to Action Link */
.guide-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.guide-card:hover .guide-link {
  opacity: 0.8;
}
@keyframes lineFlow {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.step h3 { font-size: 19px; margin-bottom: 8px; color: #1f2937; font-weight: 600;}
.step p { font-size: 15px; color: var(--color-text-secondary); }

/*   MOBILE FIX FOR PROCESS SECTION (Max-width: 768px)  */
@media (max-width: 768px) {
  
  .step::after, 
  .step:not(:last-child)::after {
    display: none !important;
  }

  .process-timeline {
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    padding: 0 10px !important;
  }

  .process-timeline::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    
    top: 25px !important;
    bottom: 25px !important;
    left: 29px !important; 
    
    width: 6px !important; 
    border-radius: 999px !important;
    z-index: -1 !important; 
    
    background-image: linear-gradient(to bottom, #be185d 0%, #ce9eb7 25%, #e84393 50%, #d4a8bf 75%, #be185d 100%) !important;
    background-size: 100% 200% !important;
    
    animation: lineFlowVertical 15s linear infinite !important;
    filter: drop-shadow(0 2px 8px rgba(232, 67, 147, 0.4)) !important;
  }
  
  .step {
    display: block !important;
    text-align: left !important;
    position: relative;
    padding-left: 75px !important;
    margin-bottom: 40px !important;
    min-height: 60px;
  }

  .step:hover {
    transform: translateY(-8px);
    background: transparent;
  }

  .step-circle {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  .step-icon {
    display: inline-block !important;
    vertical-align: middle !important;
    font-size: 22px !important;
    margin: 0 8px 4px 0 !important;
  }

  .step h3 {
    display: inline-block !important;
    vertical-align: middle !important;
    font-size: 18px !important;
    margin: 0 0 4px 0 !important;
    color: #1f2937 !important;
  }

  .step p {
    display: block !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #6b7280 !important;
  }

  /*    (Vertical Line) */
  .step:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    
    top: 50px !important; 
    bottom: -40px !important;
    height: auto !important;
    
    left: 22px !important; 
    width: 6px !important; 
    
    background: linear-gradient(to bottom, #be185d 0%, #ce9eb7 25%, #e84393 50%, #d4a8bf 75%, #be185d 100%) !important;
    background-size: 100% 200% !important; 
    
    border-radius: 999px !important;
    z-index: 1 !important;
    
    animation: lineFlowVertical 15s linear infinite !important;
    filter: drop-shadow(0 2px 8px rgba(232, 67, 147, 0.4)) !important;
  }
}
/* Vertical Flow Animation*/
@keyframes lineFlowVertical {
  0% {
    background-position: 0 200%;
  }
  100% {
    background-position: 0 0;
  }
}


  /* ==================================================
                  AGENCY VERIFICATION
     ================================================== */
.search-box {
  max-width: 600px;
  margin: 32px auto;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 18px;
  font-size: 16px;
  pointer-events: none;
  opacity: 0.5;
}

.search-input-wrap input {
  width: 100%;
  padding: 14px 44px 14px 46px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: var(--font-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input-wrap input:focus {
  border-color: var(--color-accent-dark);
  box-shadow: 1px 2px 3px 4px rgba(219, 25, 119, 0.1);
}

.clear-btn {
  position: absolute;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.clear-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.clear-btn:hover {
  background: var(--color-accent);
  color: white;
}

.search-results {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 4px;
}
@media (max-width: 768px) {
  #agency-check p {
    padding: 0 25px;
  }
}

  /* ==================================================
                  REMITTANCE
     ================================================== */
.remit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 8px;
  align-items: stretch; /* all cards same height */
}

.remit-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.2s ease;
  will-change: transform;
}

/* push button to bottom so all cards align */
.remit-card button {
  margin-top: auto;
}

/* Best value badge — absolute top right corner, doesn't affect height */
.best-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ef4444;
  color: white;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Default hover — generic */
.remit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0,0,0,0.10);
  transition-delay: 0s !important;
}

/* IME Pay — red border on hover */
.remit-card.card-ime:hover {
  border-color: #ef4444;
  box-shadow: 0 24px 56px rgba(239, 68, 68, 0.20),
              0 8px 20px rgba(0,0,0,0.08);
}

/* Western Union — yellow border on hover, always slightly highlighted */
.remit-card.card-wu {
  border-color: var(--color-accent-2);
}

.remit-card.card-wu:hover {
  border-color: #f59e0b;
  box-shadow: 0 24px 56px rgba(245, 158, 11, 0.22),
              0 8px 20px rgba(0,0,0,0.08);
}

/* Prabhu Money — green border on hover */
.remit-card.card-pm:hover {
  border-color: #22c55e;
  box-shadow: 0 24px 56px rgba(34, 197, 94, 0.20),
              0 8px 20px rgba(0,0,0,0.08);
}

/* Logo hover animation */
.remit-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 15px;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}

.remit-card:hover .remit-logo {
  transform: scale(1.12) rotate(-3deg);
}

.bg-red    { background: linear-gradient(135deg, #ef4444, #dc2626); }
.bg-yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }

.remit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

.remit-details {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
}

.remit-details div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.remit-details span {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  font-weight: 600;
}

/* --- FOREX WIDGET STYLING --- */
.forex-widget-container {
  max-width: 600px; 
  margin: 56px auto 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
  border: 1px solid #e9ecef;
  padding: 24px;
}

.forex-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 20px;
}

.forex-wrapper iframe {
  width: 100%;
  height: 383px;
  border: none;
  border-radius: 8px;
  display: block;
}

.forex-attribution {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 16px;
  border-top: 1px dashed #e9ecef;
  padding-top: 16px;
}

.forex-attribution a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.forex-attribution a:hover {
  color: #e84393; 
}

/* For Mobile */
@media (max-width: 768px) {
  .forex-widget-container {
    padding: 16px;
    margin-top: 40px;
  }
}

  /* ==================================================
                  BLOG SECTION (PLACEHOLDER)
     ================================================== */
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.placeholder-section {
  border: 4px var(--color-border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.placeholder-section:hover {
  transform: translateY(-12px) scale(1.2);
  border: 2px solid #fff;
  z-index: 2;
}
.placeholder-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-surface-2);
  border-radius: 50%;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.placeholder-section h3 { margin-bottom: 12px; color: #ffffff;}
.placeholder-section p { color: #ffe600; margin-bottom: 24px; font-size: 16px; }
.coming-soon-badge {
  background-color: #065f46;
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}
.placeholder1 {
  background-image: radial-gradient(ellipse at center, rgba(10, 15, 30, 0.85) 0%, rgba(10, 15, 30, 0.4) 60%, rgba(0, 0, 0, 0) 100%), url(/images/blog1.jpg);
  background-size: cover; 
}
.placeholder2 {
  background-image: linear-gradient(135deg, rgba(1, 1, 2, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%), url(/images/blog2.jpg);
  background-size: cover; 
}
.placeholder3 {
  background-image: linear-gradient(135deg, rgba(1, 1, 2, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%), url(/images/blog3.jpg);
  background-size: cover; 
}
  /* ==================================================
                  FAQ SECTION
     ================================================== */
.faq-container { max-width: 800px; }
.faq-list { position: relative; }
.faq-list::before {
  content: "";
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(
      circle at center,
      rgba(232,67,147,.06),
      transparent 70%
    );
  pointer-events: none;
}
.faq-item {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--color-bg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #be185d, #e84393);
}
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(232,67,147,.25);
  box-shadow:
    0 10px 25px rgba(190,24,93,.08),
    0 0 20px rgba(232,67,147,.05);
}
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 22px 24px 22px 32px;
  font-size: 16px;
  font-weight: 700;
  background: var(--color-bg);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-primary);
}
.faq-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232,67,147,.08);
  color: #be185d;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .3s ease;
}
.faq-item.open .faq-arrow {
  background: linear-gradient(135deg,#be185d,#e84393);
  color: white;
  transform: rotate(45deg);
}
.faq-item.open {
  background:
    linear-gradient(
      135deg,
      rgba(190,24,93,.03),
      rgba(232,67,147,.01)
    );
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-body {
  max-height: 500px;
  padding: 0 24px 20px;
  grid-template-rows: 1fr;
}
.faq-content {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 15px;
  overflow: hidden;
}

  /* ==================================================
                  SALARY SECTION
     ================================================== */
.salary-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.salary-overview-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: rgb(255, 255, 255);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.salary-overview-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.overview-flag {
  width: 36px;
  height: 26px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.overview-info {
  flex: 1;
  min-width: 0;
}

.overview-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: rgb(255, 208, 0);
  margin-bottom: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2)
}

.overview-range {
  font-size: 13px;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.overview-arrow {
  font-size: 16px;
  color: rgb(0, 0, 0);
  opacity: 0.7;
  transform: translateX(-4px);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.salary-overview-card:hover .overview-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .salary-overview-grid { grid-template-columns: 1fr; }
}

  /* ==================================================
                  FRAUD GUIDE SECTION
     ================================================== */
.fraud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.fraud-card {
  position: relative;
  min-height: 330px;
  padding: 28px 24px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fraud-card:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.fraud-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.fraud-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 1.15rem;

  margin-bottom: 20px;
}

.fraud-card h3 {
  margin: 0 0 14px;

  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 700;
}

.fraud-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fraud-list li {
  position: relative;

  padding-left: 22px;
  margin-bottom: 10px;

  font-size: 0.92rem;
  line-height: 1.55;
}

.fraud-list li:last-child {
  margin-bottom: 0;
}

.fraud-list li::before {
  position: absolute;
  left: 0;
  top: 3px;

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fraud-card.red {
  background: #fff4f4;
  border-color: #fee2e2;
}

.fraud-card.red::before {
  background: #dc2626;
}

.fraud-card.red .fraud-icon {
  background: #dc2626;
  color: #ffffff;
}

.fraud-card.red h3 {
  color: #b91c1c !important;
}

.fraud-card.red .fraud-list {
  color: #7f1d1d !important;
}

.fraud-card.red .fraud-list li::before {
  content: "\f071";
  color: #dc2626;
}

.fraud-card.orange {
  background: #fffaef;
  border-color: #fef0c7;
}

.fraud-card.orange::before {
  background: #e5a400;
}

.fraud-card.orange .fraud-icon {
  background: #e5a400;
  color: #ffffff;
}

.fraud-card.orange h3 {
  color: #a16207 !important;
}

.fraud-card.orange .fraud-list {
  color: #664f04 !important;
}

.fraud-card.orange .fraud-list li::before {
  content: "\f00c";
  color: #c58a00;
}

.fraud-card.green {
  background: #effbf5;
  border-color: #d1fae5;
}

.fraud-card.green::before {
  background: #059669;
}

.fraud-card.green .fraud-icon {
  background: #059669;
  color: #ffffff;
}

.fraud-card.green h3 {
  color: #047857 !important;
}

.fraud-card.green .fraud-list {
  color: #065f46 !important;
}

.fraud-card.green .fraud-list li::before {
  content: "\f095";
  color: #059669;
}

.contact-list li {
  padding-left: 0;
}

.contact-list li::before {
  display: none;
}

.contact-list strong {
  font-weight: 700;
}

@media (max-width: 900px) {
  .fraud-grid {
    grid-template-columns: 1fr;
  }

  .fraud-card {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .fraud-grid {
    gap: 16px;
  }

  .fraud-card {
    padding: 24px 20px;
    border-radius: 13px;
  }

  .fraud-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .fraud-card h3 {
    font-size: 1.08rem;
  }

  .fraud-list li {
    font-size: 0.9rem;
  }
}

.contact-list li::before { content: '📱'; font-size: 12px; }

.action-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.action-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.action-step:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 24px rgba(190, 24, 93, 0.12);
  border-color: rgba(232, 67, 147, 0.25);
  background: linear-gradient(0deg, #ffffff, #a58a9e);
}

.action-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(270deg, #be185d, #e84393);
  color: white;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(190, 24, 93, 0.25),
              0 0 16px rgba(232, 67, 147, 0.15);
}

.action-step {
  position: relative;
  overflow: hidden;
}

.action-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #be185d, #e84393);
}

.action-step strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--color-text-primary);
}

.action-step p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

  /* ==================================================
                  FOOTER SECTION
     ================================================== */
#premium-footer {
  background: var(--color-surface);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8fafc;
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
  margin-top: 80px;
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr 1fr;
  gap: 40px;
  padding: 80px 24px;
}

/* Typography & Headings */
.footer-col h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: #e84393;
  border-radius: 2px;
}

.contact-info {
  margin-bottom: 45px;
}

/* Column 1: Brand */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-wrap .logo-mark {
  width: auto; height: 55px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.footer-logo-wrap .site-name {
  font-size: 24px; font-weight: 800; color: #000000;
}

.footer-tagline {
  color: #121213;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Social Buttons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: center;
    justify-content: center;
    display: inline-flex;
    width: 28px;
    height: 28px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.3);
}

.fa-facebook-f {
  background-color: #1877f2; /* Official FB Blue */
  border-radius: 5px;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.fa-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Official IG Gradient */
  border-radius: 5px;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.fa-tiktok {
  background-color: #010101; /* Sleek TikTok Black */
  border-radius: 5px;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  -webkit-text-stroke: 1px transparent; 
  text-shadow: 
    -1.5px -1.5px 0 #25f4ee, 
     1.5px  1.5px 0 #db274b;
}

.fa-whatsapp {
  display: flex !important;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  justify-content: center;
  background-color: #00e676; /* Vibrant WhatsApp green */
  border-radius: 5px; /* Matches the rounded look in the image */
}

/* Links & Nav */
.footer-nav {
  list-style: none; padding: 0; margin: 0;
}
.footer-nav li {
  margin-bottom: 12px;
}
.footer-nav a {
  color: #8a3711;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-nav a:hover {
  color: #000000;
  transform: translateX(5px);
}
.footer-nav .nav-img {
  height: 15px;
  width: 30px;
  margin-left: 7px;
}

/* 12 Countries Dual Column Magic */
.dual-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

/* Contact Info */
.contact-info {
  list-style: none; padding: 0;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #333333;
  font-size: 15px;
  margin-bottom: 16px;
}
.contact-info a { color: #333333; transition: 0.2s; }
.contact-info a:hover { color: #000000; }
.c-icon { font-size: 18px; color: #15865b;}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 15px 0;
  background-color: #030d24;
  text-align: center;
  color: grey;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* ट्याब्लेटमा २ लाइन */
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr; /* मोबाइलमा १ लाइन */
    gap: 40px;
    padding: 60px 24px;
  }
  .dual-col {
    grid-template-columns: 1fr 1fr; /* मोबाइलमा पनि देशहरू २ लाइनमै ठिक देखिन्छन् */
  }
  .bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

  /* ==================================================
                  SCROLL REVEAL
     ================================================== */
.reveal { 
  opacity: 0; 
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible { 
  opacity: 1; 
}


.country-grid .country-card:nth-child(1) { --reveal-delay: 0.05s; }
.country-grid .country-card:nth-child(2) { --reveal-delay: 0.10s; }
.country-grid .country-card:nth-child(3) { --reveal-delay: 0.15s; }
.country-grid .country-card:nth-child(4) { --reveal-delay: 0.20s; }
.country-grid .country-card:nth-child(5) { --reveal-delay: 0.25s; }
.country-grid .country-card:nth-child(6) { --reveal-delay: 0.30s; }

.country-card.reveal {
  transition-delay: var(--reveal-delay, 0s);
}

.country-card.reveal.visible {
  transition-delay: var(--reveal-delay, 0s);
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-left h1 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-left { width: 100%; }
  .hero-right { width: 100%; margin-top: 40px; }
  .hero-left h1 { font-size: 36px; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .stat-strip { justify-content: center; flex-wrap: wrap; }
  
  .process-timeline {
    flex-direction: column;
    padding-left: 20px;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 42px;
    width: 2px;
    background: var(--color-border);
    z-index: 1;
  }
  .step { display: flex; text-align: left; align-items: flex-start; margin-bottom: 24px; }
  .step:not(:last-child)::after { display: none; }
  .step-circle { margin: 0 20px 0 0; flex-shrink: 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-stack { transform: scale(0.8); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: opacity 0.3s ease !important; transform: none !important; }
}


  /* ==================================================
                  UAE.Html SECTION
     ================================================== */
/* Card stack */
.dcard-1 { 
  transform: translateX(0px) translateY(0px) rotate(0deg); z-index: 1; 
}
.card-stack:hover .dcard-1 { 
  transform: translateX(-12px) rotateY(259deg);
}
.hero-uae {
  color: #c72626 !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/uae-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.uae-color {
  color: #009632 !important;
}
#process-uae .v-step-marker {
  background: linear-gradient(135deg, #00B15D 0%, #2D3436 100%);
}

#process-uae .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #a0ce9e 0%, #68c565 25%, #32a02f 50%, #00B15D 75%, #01964e 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(67, 232, 89, 0.4)) !important;
}

#faq-uae .faq-item::before {
  background: linear-gradient(135deg, #00B15D 0%, #2D3436 100%);
}

#faq-uae .faq-item:hover {
  border-color: rgba(67, 232, 117, 0.25);
  box-shadow:
    0 10px 25px rgba(24, 190, 38, 0.08),
    0 0 20px rgba(67, 232, 117, 0.05);
}

#faq-uae .faq-arrow {
  color: #00B15D;
  background: #ebf8ea;
}
#faq-uae .faq-item.open {
  background: #ebf8ea;
}
.uae-btn {
  background-color: #008145 !important;
  color: #ffffff !important;
}
.uae-btn:hover {
  background-color: #004718 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(24, 190, 38, 0.08),
    0 0 20px rgba(67, 232, 117, 0.05) !important;
}
.uae-btn1 {
  background-color: #ffffff !important ;
  color: #004718 !important;
  border: 2px solid #008145 !important;
}
.uae-btn1:hover {
  background-color: #008145 !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(24, 190, 38, 0.08),
    0 0 20px rgba(67, 232, 117, 0.05) !important;
}
.cta-flex { 
  display: flex; 
  gap: 16px; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin-top: 40px; 
}
/* ==================================================
                  QATAR.Html SECTION
     ================================================== */
.hero-qatar {
  color: #8D1B3D !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/qatar-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.qatar-color {
  color: #8D1B3D !important;
}
#process-qatar .v-step-marker {
  background: linear-gradient(135deg, #BE123C 0%, #2D3436 100%);
}

#process-qatar .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #e8b4c0 0%, #d1728a 25%, #a8355a 50%, #BE123C 75%, #881337 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(190, 18, 60, 0.4)) !important;
}

#faq-qatar .faq-item::before {
  background: linear-gradient(135deg, #BE123C 0%, #2D3436 100%);
}

#faq-qatar .faq-item:hover {
  border-color: rgba(190, 18, 60, 0.25);
  box-shadow:
    0 10px 25px rgba(136, 19, 55, 0.08),
    0 0 20px rgba(190, 18, 60, 0.05);
}

#faq-qatar .faq-arrow {
  color: #8D1B3D;
  background: #f8e6ea;
}
#faq-qatar .faq-item.open {
  background: #f8e6ea;
}
.qatar-btn {
  background-color: #8D1B3D !important;
  color: #ffffff !important;
}
.qatar-btn:hover {
  background-color: #5c0d24 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(136, 19, 55, 0.08),
    0 0 20px rgba(190, 18, 60, 0.05) !important;
}
.qatar-btn1 {
  background-color: #ffffff !important ;
  color: #5c0d24 !important;
  border: 2px solid #8D1B3D !important;
}
.qatar-btn1:hover {
  background-color: #8D1B3D !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(136, 19, 55, 0.08),
    0 0 20px rgba(190, 18, 60, 0.05) !important;
}
/* ==================================================
                  SAUDI.Html SECTION
     ================================================== */
.hero-saudi {
  color: #009632 !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/saudi-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.saudi-color {
  color: #009632 !important;
}
#process-saudi .v-step-marker {
  background: linear-gradient(135deg, #3E8E41 0%, #2D3436 100%);
}

#process-saudi .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #c3f0c5 0%, #9de6a1 25%, #7cdd81 50%, #3e8e41 75%, #215a24 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(62, 142, 65, 0.4)) !important;
}

#faq-saudi .faq-item::before {
  background: linear-gradient(135deg, #3E8E41 0%, #2D3436 100%);
}

#faq-saudi .faq-item:hover {
  border-color: rgba(62, 142, 65, 0.25);
  box-shadow:
    0 10px 25px rgba(33, 90, 36, 0.08),
    0 0 20px rgba(124, 221, 129, 0.05);
}

#faq-saudi .faq-arrow {
  color: #215A24;
  background: #e9f8ea;
}
#faq-saudi .faq-item.open {
  background: #e9f8ea;
}
.saudi-btn {
  background-color: #215A24 !important;
  color: #ffffff !important;
}
.saudi-btn:hover {
  background-color: #143516 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(33, 90, 36, 0.08),
    0 0 20px rgba(124, 221, 129, 0.05) !important;
}
.saudi-btn1 {
  background-color: #ffffff !important ;
  color: #143516 !important;
  border: 2px solid #215A24 !important;
}
.saudi-btn1:hover {
  background-color: #215A24 !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(33, 90, 36, 0.08),
    0 0 20px rgba(124, 221, 129, 0.05) !important;
}
     

/* ==================================================
                  MALAYSIA.Html SECTION
     ================================================== */
.hero-malaysia {
  color: #c72626 !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/malaysia-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.malaysia-color {
  color: #3c65c4 !important;
}
#process-malaysia .v-step-marker {
  background: linear-gradient(135deg, #012169 0%, #CC0001 100%);
}

#process-malaysia .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #6b7fb3 0%, #012169 40%, #6b0000 70%, #CC0001 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(1, 33, 105, 0.4)) !important;
}

#faq-malaysia .faq-item::before {
  background: linear-gradient(135deg, #012169 0%, #CC0001 100%);
}

#faq-malaysia .faq-item:hover {
  border-color: rgba(1, 33, 105, 0.25);
  box-shadow:
    0 10px 25px rgba(1, 33, 105, 0.08),
    0 0 20px rgba(204, 0, 1, 0.05);
}

#faq-malaysia .faq-arrow {
  color: #012169;
  background: #e8eaf3;
}
#faq-malaysia .faq-item.open {
  background: #e8eaf3;
}
.malaysia-btn {
  background-color: #012169 !important;
  color: #ffffff !important;
}
.malaysia-btn:hover {
  background-color: #000f38 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(1, 33, 105, 0.08),
    0 0 20px rgba(204, 0, 1, 0.05) !important;
}
.malaysia-btn1 {
  background-color: #ffffff !important ;
  color: #000f38 !important;
  border: 2px solid #012169 !important;
}
.malaysia-btn1:hover {
  background-color: #012169 !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(1, 33, 105, 0.08),
    0 0 20px rgba(204, 0, 1, 0.05) !important;
}     
/* ==================================================
                  KOREA.Html SECTION
     ================================================== */
.hero-korea {
  color: #CD2E3A !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/korea-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.korea-color {
  color: #0047A0 !important;
}
#process-korea .v-step-marker {
  background: linear-gradient(135deg, #0047A0 0%, #CD2E3A 100%);
}

#process-korea .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #7ea3d4 0%, #0047A0 40%, #a02330 70%, #CD2E3A 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(0, 71, 160, 0.4)) !important;
}

#faq-korea .faq-item::before {
  background: linear-gradient(135deg, #0047A0 0%, #CD2E3A 100%);
}

#faq-korea .faq-item:hover {
  border-color: rgba(0, 71, 160, 0.25);
  box-shadow:
    0 10px 25px rgba(0, 71, 160, 0.08),
    0 0 20px rgba(205, 46, 58, 0.05);
}

#faq-korea .faq-arrow {
  color: #0047A0;
  background: #e6edf7;
}
#faq-korea .faq-item.open {
  background: #e6edf7;
}
.korea-btn {
  background-color: #0047A0 !important;
  color: #ffffff !important;
}
.korea-btn:hover {
  background-color: #002c63 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(0, 71, 160, 0.08),
    0 0 20px rgba(205, 46, 58, 0.05) !important;
}
.korea-btn1 {
  background-color: #ffffff !important ;
  color: #002c63 !important;
  border: 2px solid #0047A0 !important;
}
.korea-btn1:hover {
  background-color: #0047A0 !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(0, 71, 160, 0.08),
    0 0 20px rgba(205, 46, 58, 0.05) !important;
}
/* ==================================================
                  JAPAN.Html SECTION
     ================================================== */
.hero-japan {
  color: #D32F2F !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/japan-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.japan-color {
  color: #D32F2F !important;
}
#process-japan .v-step-marker {
  background: linear-gradient(135deg, #D32F2F 0%, #2D3436 100%);
}

#process-japan .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #FFCDD2 0%, #ef9a9a 25%, #e57373 50%, #D32F2F 75%, #a02020 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(211, 47, 47, 0.4)) !important;
}

#faq-japan .faq-item::before {
  background: linear-gradient(135deg, #D32F2F 0%, #2D3436 100%);
}

#faq-japan .faq-item:hover {
  border-color: rgba(211, 47, 47, 0.25);
  box-shadow:
    0 10px 25px rgba(211, 47, 47, 0.08),
    0 0 20px rgba(255, 205, 210, 0.15);
}

#faq-japan .faq-arrow {
  color: #D32F2F;
  background: #fce8e8;
}
#faq-japan .faq-item.open {
  background: #fce8e8;
}
.japan-btn {
  background-color: #D32F2F !important;
  color: #ffffff !important;
}
.japan-btn:hover {
  background-color: #8f1f1f !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(211, 47, 47, 0.08),
    0 0 20px rgba(255, 205, 210, 0.15) !important;
}
.japan-btn1 {
  background-color: #ffffff !important ;
  color: #8f1f1f !important;
  border: 2px solid #D32F2F !important;
}
.japan-btn1:hover {
  background-color: #D32F2F !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(211, 47, 47, 0.08),
    0 0 20px rgba(255, 205, 210, 0.15) !important;
}
/* ==================================================
                  KUWAIT.Html SECTION
     ================================================== */
.hero-kuwait {
  color: #b61111 !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/kuwait-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.kuwait-color {
  color: #007A3D !important;
}
#process-kuwait .v-step-marker {
  background: linear-gradient(135deg, #007A3D 0%, #2D3436 100%);
}

#process-kuwait .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #9fd4b4 0%, #5cb582 25%, #2f9a5a 50%, #007A3D 75%, #045c2e 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(0, 122, 61, 0.4)) !important;
}

#faq-kuwait .faq-item::before {
  background: linear-gradient(135deg, #007A3D 0%, #2D3436 100%);
}

#faq-kuwait .faq-item:hover {
  border-color: rgba(0, 122, 61, 0.25);
  box-shadow:
    0 10px 25px rgba(0, 122, 61, 0.08),
    0 0 20px rgba(0, 122, 61, 0.05);
}

#faq-kuwait .faq-arrow {
  color: #007A3D;
  background: #e6f5ea;
}
#faq-kuwait .faq-item.open {
  background: #e6f5ea;
}
.kuwait-btn {
  background-color: #007A3D !important;
  color: #ffffff !important;
}
.kuwait-btn:hover {
  background-color: #004a25 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(0, 122, 61, 0.08),
    0 0 20px rgba(0, 122, 61, 0.05) !important;
}
.kuwait-btn1 {
  background-color: #ffffff !important ;
  color: #004a25 !important;
  border: 2px solid #007A3D !important;
}
.kuwait-btn1:hover {
  background-color: #007A3D !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(0, 122, 61, 0.08),
    0 0 20px rgba(0, 122, 61, 0.05) !important;
}
/* ==================================================
                  OMAN.Html SECTION
     ================================================== */
.hero-oman {
  color: #4ed655 !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/oman-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.oman-color {
  color: #D32F2F !important;
}
#process-oman .v-step-marker {
  background: linear-gradient(135deg, #D32F2F 0%, #43A047 100%);
}

#process-oman .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #ef9a9a 0%, #D32F2F 40%, #7fbf72 70%, #43A047 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(211, 47, 47, 0.4)) !important;
}

#faq-oman .faq-item::before {
  background: linear-gradient(135deg, #D32F2F 0%, #43A047 100%);
}

#faq-oman .faq-item:hover {
  border-color: rgba(211, 47, 47, 0.25);
  box-shadow:
    0 10px 25px rgba(211, 47, 47, 0.08),
    0 0 20px rgba(67, 160, 71, 0.05);
}

#faq-oman .faq-arrow {
  color: #D32F2F;
  background: #fce8e8;
}
#faq-oman .faq-item.open {
  background: #fce8e8;
}
.oman-btn {
  background-color: #D32F2F !important;
  color: #ffffff !important;
}
.oman-btn:hover {
  background-color: #8f1f1f !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(211, 47, 47, 0.08),
    0 0 20px rgba(67, 160, 71, 0.05) !important;
}
.oman-btn1 {
  background-color: #ffffff !important ;
  color: #8f1f1f !important;
  border: 2px solid #D32F2F !important;
}
.oman-btn1:hover {
  background-color: #D32F2F !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(211, 47, 47, 0.08),
    0 0 20px rgba(67, 160, 71, 0.05) !important;
}
/* ==================================================
                  BAHRAIN.Html SECTION
     ================================================== */
.hero-bahrain {
  color: #cf125e !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/bahrain-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bahrain-color {
  color: #cf125e !important;
}
#process-bahrain .v-step-marker {
  background: linear-gradient(135deg, #cf125e 0%, #2D3436 100%);
}

#process-bahrain .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #F48FB1 0%, #e2649a 25%, #dc3d80 50%, #cf125e 75%, #99094a 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(207, 18, 94, 0.4)) !important;
}

#faq-bahrain .faq-item::before {
  background: linear-gradient(135deg, #cf125e 0%, #2D3436 100%);
}

#faq-bahrain .faq-item:hover {
  border-color: rgba(207, 18, 94, 0.25);
  box-shadow:
    0 10px 25px rgba(207, 18, 94, 0.08),
    0 0 20px rgba(244, 143, 177, 0.15);
}

#faq-bahrain .faq-arrow {
  color: #cf125e;
  background: #fbe6ef;
}
#faq-bahrain .faq-item.open {
  background: #fbe6ef;
}
.bahrain-btn {
  background-color: #cf125e !important;
  color: #ffffff !important;
}
.bahrain-btn:hover {
  background-color: #8a0c3f !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(207, 18, 94, 0.08),
    0 0 20px rgba(244, 143, 177, 0.15) !important;
}
.bahrain-btn1 {
  background-color: #ffffff !important ;
  color: #8a0c3f !important;
  border: 2px solid #cf125e !important;
}
.bahrain-btn1:hover {
  background-color: #cf125e !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(207, 18, 94, 0.08),
    0 0 20px rgba(244, 143, 177, 0.15) !important;
}
/* ==================================================
                  ROMANIA.Html SECTION
     ================================================== */
.hero-romania {
  color: #FFC107 !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/romania-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.romania-color {
  color: #1565C0 !important;
}
#process-romania .v-step-marker {
  background: linear-gradient(135deg, #1565C0 0%, #FFC107 100%);
}

#process-romania .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #90caf9 0%, #1565C0 40%, #ffca28 70%, #FFC107 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(21, 101, 192, 0.4)) !important;
}

#faq-romania .faq-item::before {
  background: linear-gradient(135deg, #1565C0 0%, #FFC107 100%);
}

#faq-romania .faq-item:hover {
  border-color: rgba(21, 101, 192, 0.25);
  box-shadow:
    0 10px 25px rgba(21, 101, 192, 0.08),
    0 0 20px rgba(255, 193, 7, 0.08);
}

#faq-romania .faq-arrow {
  color: #1565C0;
  background: #e3eefb;
}
#faq-romania .faq-item.open {
  background: #e3eefb;
}
.romania-btn {
  background-color: #1565C0 !important;
  color: #ffffff !important;
}
.romania-btn:hover {
  background-color: #0d47a1 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(21, 101, 192, 0.08),
    0 0 20px rgba(255, 193, 7, 0.08) !important;
}
.romania-btn1 {
  background-color: #ffffff !important ;
  color: #0d47a1 !important;
  border: 2px solid #1565C0 !important;
}
.romania-btn1:hover {
  background-color: #1565C0 !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(21, 101, 192, 0.08),
    0 0 20px rgba(255, 193, 7, 0.08) !important;
}                              
/* ==================================================
                  POLAND.Html SECTION
     ================================================== */
.hero-poland {
  color: #DC143C !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/poland-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.poland-color {
  color: #DC143C !important;
}
#process-poland .v-step-marker {
  background: linear-gradient(135deg, #DC143C 0%, #2D3436 100%);
}

#process-poland .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #f3a8b7 0%, #e56f87 25%, #e43f5c 50%, #DC143C 75%, #9c0d2a 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(220, 20, 60, 0.4)) !important;
}

#faq-poland .faq-item::before {
  background: linear-gradient(135deg, #DC143C 0%, #2D3436 100%);
}

#faq-poland .faq-item:hover {
  border-color: rgba(220, 20, 60, 0.25);
  box-shadow:
    0 10px 25px rgba(220, 20, 60, 0.08),
    0 0 20px rgba(220, 20, 60, 0.05);
}

#faq-poland .faq-arrow {
  color: #DC143C;
  background: #fce7ea;
}
#faq-poland .faq-item.open {
  background: #fce7ea;
}
.poland-btn {
  background-color: #DC143C !important;
  color: #ffffff !important;
}
.poland-btn:hover {
  background-color: #93092a !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(220, 20, 60, 0.08),
    0 0 20px rgba(220, 20, 60, 0.05) !important;
}
.poland-btn1 {
  background-color: #ffffff !important ;
  color: #93092a !important;
  border: 2px solid #DC143C !important;
}
.poland-btn1:hover {
  background-color: #DC143C !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(220, 20, 60, 0.08),
    0 0 20px rgba(220, 20, 60, 0.05) !important;
}
/* ==================================================
                  MALTA.Html SECTION
     ================================================== */
.hero-malta {
  color: #CF142B !important;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0;
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/malta-cover.webp) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.malta-color {
  color: #CF142B !important;
}
#process-malta .v-step-marker {
  background: linear-gradient(135deg, #CF142B 0%, #2D3436 100%);
}

#process-malta .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #f0a3ac 0%, #e06775 25%, #d63a4a 50%, #CF142B 75%, #94091c 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(207, 20, 43, 0.4)) !important;
}

#faq-malta .faq-item::before {
  background: linear-gradient(135deg, #CF142B 0%, #2D3436 100%);
}

#faq-malta .faq-item:hover {
  border-color: rgba(207, 20, 43, 0.25);
  box-shadow:
    0 10px 25px rgba(207, 20, 43, 0.08),
    0 0 20px rgba(207, 20, 43, 0.05);
}

#faq-malta .faq-arrow {
  color: #CF142B;
  background: #fbe6e8;
}
#faq-malta .faq-item.open {
  background: #fbe6e8;
}
.malta-btn {
  background-color: #CF142B !important;
  color: #ffffff !important;
}
.malta-btn:hover {
  background-color: #870d1c !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(207, 20, 43, 0.08),
    0 0 20px rgba(207, 20, 43, 0.05) !important;
}
.malta-btn1 {
  background-color: #ffffff !important ;
  color: #870d1c !important;
  border: 2px solid #CF142B !important;
}
.malta-btn1:hover {
  background-color: #CF142B !important;
  color: #ffffff !important;
   box-shadow:
    0 10px 25px rgba(207, 20, 43, 0.08),
    0 0 20px rgba(207, 20, 43, 0.05) !important;
}

/* Container to center the card below buttons */
.lt-card-wrapper {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically / aligns middle */
  margin-top: 90px;        /* Space between buttons and card */
  width: 100%;             /* Ensures the wrapper spans full width to allow true centering */
}

/* The Clickable Card */
.lt-check-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--color-surface); /* Use your theme's surface color */
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 350px;
  width: 100%;
}

/* Hover Effect - Lifts up and increases shadow */
.lt-check-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.lt-check {
  margin-top: 80px;
  color: var(--color-text-secondary);
}

/* Icon Styling */
.lt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d8e9ff; /* Light blue background */
  font-size: 1.6rem; /* Makes the emoji bigger */
  line-height: 1; /* Keeps the box perfectly square */
  padding: 10px;
  border-radius: 8px;
}

/* Text Container inside card */
.lt-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Card Title */
.lt-title {
  color: #000000; /* Dark text */
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Card Subtitle */
.lt-subtitle {
  color: var(--color-text-secondary); /* Gray text */
  font-size: 0.8rem;
  font-weight: 400;
}
/* Hero Banner */
.country-hero { 
  display: flex; 
  padding: 60px 0 80px; 
  position: relative; 
  color: #ffd700; 
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/korea-cover.webp); 
}
.country-hero h1 { 
  font-size: 48px; 
  font-weight: 800; 
  margin-bottom: 8px; 
  color: white;}
.hero-subtitle { 
  font-size: 20px; 
  opacity: 0.9; 
  margin-bottom: 40px; 
  color: var(--color-accent);
}

.quick-stats-grid { 
  display: flex; 
  gap: 24px; 
  justify-content: center; 
  flex-wrap: wrap; 
}
.quick-stat { 
  background: transparent; 
  padding: 16px 32px; 
  border-radius: var(--radius-md); 
  backdrop-filter: blur(8px); 
  border: 1px solid rgba(255,255,255,0.3); 
  min-width: 180px; 
}
.stat-value { 
  display: block; 
  font-size: 24px; 
  font-weight: 800; 
  margin-bottom: 4px; 
}
.stat-label { 
  font-size: 14px; 
  opacity: 0.9; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
}
.paragraph { 
  font-size: 17px; 
  color: #ffffff; 
  margin: 25px 185px 20px 185px; 
}
@media (max-width: 768px) {
  .stat-value { font-size: 21px; }
  .stat-label { font-size: 13px; }
  .paragraph { font-size: 16px; }
}

/* Section Headers */
.overline { 
  color: var(--color-accent); 
  font-weight: 700; 
  font-size: 14px; 
  text-transform: uppercase; 
  display: block; 
  margin-bottom: 8px; 
}
.section-header h2 { 
  font-size: 32px; 
  font-weight: 800; 
  margin-bottom: 12px; 
}

/* Grids */
.grid-2-col { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 32px; 
}

/* Cards & Info Boxes */
/*======================================
  IMPORTANT INFO CARDS
======================================*/

.info-card{
    position:relative;
    overflow:hidden;
    padding:40px;
    border-radius:22px;
    border:1px solid var(--color-border);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.14);
}

/* Top Accent Line */

.info-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
}

/* Watermark */

.info-card::after{
    position:absolute;
    right:-10px;
    bottom:-15px;
    font-size:110px;
    font-weight:700;
    opacity:.05;
    pointer-events:none;
}

/*------------------------------------
 Warning Card
------------------------------------*/

.warning-card{
    background:linear-gradient(135deg,#FFF5F5,#FDE2E2);
}

.warning-card::before{
    background:#EF4444;
}

.warning-card::after{
    content:"⚠";
}

.warning-card h3{
    color:#DC2626;
}

/*------------------------------------
 Golden Visa Card
------------------------------------*/

.golden-card{
    background:linear-gradient(135deg, #FFF8E1, #F6E7A1);
}

.golden-card::before{
    background:#D4A017;
}

.golden-card::after{
    content:"★";
}

.golden-card h3{
    color: #7A5C00;
}

.card-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    border-radius:50%;
    margin-bottom:22px;
}

.warning-card .card-icon{
    background:#FEE2E2;
    color:#DC2626;
}

.golden-card .card-icon{
    background:#FDE68A;
    color:#8B6B00;;
}

.info-card h3{
    margin-bottom:18px;
    font-size:1.5rem;
    font-weight:800;
    line-height:1.35;
}

.info-card p{
    margin-bottom:18px;
    line-height:1.85;
    color: #000000;
}

.styled-list1{
    list-style:none;
    padding:0;
    margin:0;
}

.styled-list1 li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    line-height:1.8;
}

.styled-list1 li::before{
    content:"‼";
    position:absolute;
    left:0;
    top:0;
    color:#971414;
    font-weight:700;
}

.styled-list1 strong{
    color:#971414;;
}

.styled-list{
    list-style:none;
    padding:0;
    margin:0;
}

.styled-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    line-height:1.8;
}

.styled-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#9c7e3e;
    font-weight:700;
}

.styled-list strong{
    color:#8B6B00;;
}

/* --- COST BREAKDOWN WRAPPER --- */
.cost-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.cost-header {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 2px dashed #cbd5e1;
}

/* --- TABLE STYLES (Fluid & Responsive) --- */
.table-responsive {
  width: 100%;
  margin-bottom: 25px;
  /* Removed horizontal scroll requirement so it fits the screen */
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Table Headers */
.cost-table thead tr {
  background-color: #f8fafc;
}

.cost-table th {
  padding: 16px;
  color: #334155;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 2px solid #e2e8f0;
  line-height: 1.3;
}

.cost-table th:first-child { border-top-left-radius: 8px; }
.cost-table th:last-child { border-top-right-radius: 8px; }

/* Table Body Cells */
.cost-table td {
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

/* First Column (Descriptions) */
.cost-table td:first-child {
  font-weight: 600;
  color: #475569;
}

/* Row Hover Effect */
.cost-table tbody tr {
  transition: background-color 0.2s ease-in-out;
}
.cost-table tbody tr:hover {
  background-color: #f1f5f9;
}

/* --- BADGES (Cost & Remarks) --- */
.cost-val {
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  font-size: 0.95rem;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.cost-val.free-val {
  color: #059669;
  background: #ecfdf5;
  border-color: #d1fae5;
}

.remark-badge {
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  text-align: center;
}

.employer-pays {
  color: #047857;
  background-color: #d1fae5;
  border: 1px solid #a7f3d0;
}

.worker-pays {
  color: #b45309;
  background-color: #fef3c7;
  border: 1px solid #fde68a;
}

.worker-emp-pays {
  color: #0369a1; 
  background-color: #e0f2fe; 
  border: 1px solid #bae6fd;
}
/* --- RED FLAG WARNING BOX --- */
.red-flag-box {
  background-color: #fef2f2;
  border-left: 5px solid #ef4444;
  padding: 20px;
  border-radius: 6px;
  margin-top: 10px;
}

.red-flag-box strong {
  color: #b91c1c;
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.red-flag-box p {
  color: #7f1d1d;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================================================
   MOBILE RESPONSIVENESS (Fits all 3 columns on small screens)
   ================================================== */
@media (max-width: 650px) {
  .cost-box {
    padding: 15px; /* Less outer padding on mobile */
  }
  
  .cost-table th, 
  .cost-table td {
    padding: 10px 6px; /* Tighter padding inside the table */
    font-size: 0.85rem; /* Smaller text to fit */
  }
  
  .cost-table th {
    font-size: 0.9rem;
  }

  .cost-val, 
  .remark-badge {
    padding: 4px 8px; /* Smaller badges */
    font-size: 0.8rem;
    white-space: normal; /* Allows text inside badges to wrap (e.g. "Employer (Pays)") */
    word-break: break-word;
  }
}

.red-flag-box strong {
  color: #b91c1c;
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.red-flag-box p {
  color: #7f1d1d;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Danger & Contact Boxes */
.danger-box { 
  border: 2px solid #ef4444; 
  background: #fef2f2; 
  padding: 32px; 
  border-radius:  var(--radius-md); 
}
.danger-box h3 { 
  color: #d11818; 
  margin-bottom: 16px; 
}
.danger-list li { 
  color: #971414; 
}

.contact-box { 
  background: var(--color-surface); 
  border: 2px solid #078d4e; 
  padding: 32px; 
  border-radius: var(--radius-md); 
}
.contact-box h3 { 
  font-size: 20px;
  color: #078d4e;
  margin-bottom: 24px; 
}
.contact-item { 
  color: #00533b;
  margin-bottom: 20px; 
}
.contact-item:last-child { 
  margin-bottom: 0; 
}
.contact-item strong { 
  display: block; 
  font-size: 15px; 
  margin-bottom: 4px; 
}
.contact-item p { 
  font-size: 14px; 
  color: var(--color-text-secondary); 
}

/* Footer */
#footer { 
  padding: 0; 
  border-top: 1px solid var(--color-border); 
  color: var(--color-text-muted); 
  font-size: 14px; 
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .country-hero h1 { 
    font-size: 32px; 
  }
  .grid-2-col { 
    grid-template-columns: 1fr; 
  }
  .vertical-timeline { 
    padding-left: 0; 
  }
  .vertical-timeline::before { 
    left: 22px; 
  }
  .paragraph { 
    margin: 20px 16px 20px 16px; 
  }
  .v-step-content { 
    margin-left: 16px; 
    padding: 16px; 
  }
  .desktop-nav { 
    display: none; 
  }
  .cta-flex { 
    flex-direction: column; 
  }
}

/* मोबाइल डिभाइसको लागि मात्र (Mobile Responsive) */
@media (max-width: 768px) {
  
  /* १. कार्डलाई प्याराग्राफको तल झार्नको लागि */
  .country-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .card-stack {
    margin-top: 40px; /* प्याराग्राफ र कार्डको बीचमा ग्याप */
  }

  /* २. Quick Stats लाई (२ माथि, १ बीचमा तल) मिलाउनको लागि */
  .quick-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* दुईवटा बराबर कोलम (Columns) */
    gap: 12px;
    width: 100%;
  }

  .quick-stat {
    min-width: 0; /* मोबाइलमा अटाउनको लागि १८०px को लिमिट हटाएको */
    padding: 12px; /* मोबाइलको लागि प्याडिङ अलिकति घटाएको */
  }

  /* तेस्रो (अन्तिम) stat लाई ठीक बीचमा राख्न */
  .quick-stat:nth-child(3) {
    grid-column: 1 / -1; /* दुवै कोलमको ठाउँ लिने */
    justify-self: center; /* आफूलाई बीचमा राख्ने */
    width: calc(50% - 6px); /* माथिका बक्सहरूकै साइज बराबर बनाउने */
  }
}

/* ==================================================
                  VERTICAL TIMELINE
     ================================================== */
.vertical-timeline { 
  max-width: 800px; 
  margin: 0 auto;
  position: relative !important; 
  display: block !important;
  padding-left: 24px; 
}

.vertical-timeline::before { 
  content: ''; 
  position: absolute !important; 
  left: 43px; 
  top: 80px !important;
  height: calc(100% - 120px) !important; 
  width: 6px; 
  border-radius: 999px;
  background-image: linear-gradient(to bottom, #be185d 0%, #ce9eb7 25%, #e84393 50%, #d4a8bf 75%, #be185d 100%) !important;
  background-size: 100% 200% !important;  
  animation: lineFlowVertical 8s linear infinite !important;
  filter: drop-shadow(0 2px 8px rgba(232, 67, 147, 0.4)) !important;
  z-index: 1 !important; 
}

/* --- STEP CONTAINER --- */
.v-step { 
  display: flex; 
  margin-bottom: 32px; 
  position: relative; 
  z-index: 2; 
  align-items: center; 
}

/* --- MARKER */
.v-step-marker { 
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  background: linear-gradient(270deg, #be185d, #e84393); 
  color: white; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 800; 
  font-size: 18px; 
  flex-shrink: 0; 
  position: relative; 
  z-index: 3;
   box-shadow: 0 4px 12px rgba(190, 24, 93, 0.25), 0 0 16px rgba(232, 67, 147, 0.15);
}
.bg-surface .v-step-marker { 
  box-shadow: 0 0 0 6px rgb(255, 255, 255), 0 4px 12px rgba(253, 0, 106, 0.25); 
}

/* --- CONTENT BOX --- */
.v-step-content { 
  background: var(--color-bg); 
  padding: 24px; 
  border-radius: var(--radius-md); 
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border: 1px solid var(--color-border); 
  margin-left: 32px; 
  flex-grow: 1; 
  transition: transform 0.3s ease;
}
.v-step-content:hover {
  transform: translateX(8px);
}

.v-step-content h3 { 
  font-size: 18px; 
  margin-bottom: 8px; 
  color: var(--color-text-primary); 
  font-weight: 700;
}
.v-step-content p { 
  color: var(--color-text-secondary); 
  font-size: 15px; 
  margin: 0;
}


/*  MOBILE RESPONSIVENESS  */
@media (max-width: 768px) {
  .vertical-timeline {
    padding-left: 0;
  }
  
  .vertical-timeline::before {
    left: 19px; 
  }

  .v-step-content {
    margin-left: 20px;
    padding: 16px;
  }

  .v-step-content h3 {
    font-size: 16px;
  }

  .v-step-content p {
    font-size: 14px;
  }
}

/* CSS FOR SALARY TABLE SECTION */

.salary-section {
  padding: 80px 0;
  background-color: var(--color-surface);
  font-family: 'Noto Sans', 'Noto Sans Devanagari', sans-serif;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0d1117;
  margin-bottom: 12px;
}

.section-header .subtitle {
  color: #6b7280;
  font-size: 16px;
}

.salary-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 10px 24px;
  border: 1px solid #e84393;
  border-radius: 99px;
  background: #e84393;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: #e84393;
  background-color: white;
  color: #e84393;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,67,147,0.15);
}

.salary-table-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-bottom: 24px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.salary-table {
  width: 100%;
  min-width: 800px; 
  border-collapse: collapse;
  text-align: left;
}

.salary-table th {
  background-color: #f9fafb;
  color: #423737;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

.salary-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #f3f4f6;
  color: #1f2937;
  font-size: 15px;
  font-weight: 700;
  vertical-align: middle;
}

.salary-table tbody tr {
  transition: background-color 0.2s ease;
}

.salary-table tbody tr:hover {
  background-color: #f8fafc; 
}

.salary-table tbody tr:last-child td {
  border-bottom: none;
}


.text-right {
  text-align: right !important;
}


.salary-num {
  font-weight: 700 !important;
  color: #059669 !important;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.salary-table th.align-right,
.salary-table td.align-right {
  text-align: right !important;
  padding-right: 40px !important; 
}

.salary-table th.align-center,
.salary-table td.align-center {
  text-align: center !important;
}

.note-text {
  font-size: 13px !important;
  color: #62676e !important;
  font-weight: 480 !important;
}


.country-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.country-tag.uae {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
}

.country-tag.qatar {
  background: linear-gradient(135deg, #f5d0fe, #ede9fe);
  color: #7c2d92;
}

.country-tag.saudi {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
}

.country-tag.malaysia {
  background: linear-gradient(135deg, #fee2e2, #dbeafe);
  color: #991b1b;
}

.country-tag.korea {
  background: linear-gradient(135deg, #dbeafe, #fee2e2);
  color: #1e40af;
}

.country-tag.japan {
  background: linear-gradient(135deg, #fff1f2, #fee2e2);
  color: #b91c1c;
}

.country-tag.kuwait {
  background: linear-gradient(135deg, #dcfce7, #f3f4f6);
  color: #14532d;
}

.country-tag.bahrain {
  background: linear-gradient(135deg, #ffe4e6, #fff1f2);
  color: #9f1239;
}

.country-tag.oman {
  background: linear-gradient(135deg, #dcfce7, #fee2e2);
  color: #991b1b;
}

.country-tag.poland {
  background: linear-gradient(135deg, #fff1f2, #fce7f3);
  color: #9d174d;
}

.country-tag.romania {
  background: linear-gradient(135deg, #dbeafe, #fef3c7);
  color: #1d4ed8;
}

.country-tag.malta {
  background: linear-gradient(135deg, #f3f4f6, #fee2e2);
  color: #b91c1c;
}


.salary-disclaimer {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .salary-section { padding: 60px 0; }
  .section-header h2 { font-size: 26px; }
  .tab-btn { padding: 8px 16px; font-size: 14px; }
  .salary-table-card { border-radius: 12px; }
}  
@media (max-width: 600px) {
  .salary-table {
    min-width: 0;
    table-layout: auto;
  }

  .salary-table th,
  .salary-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .salary-table th:nth-child(1),
  .salary-table td:nth-child(1) {
    width: 45%;
  }
  .salary-table th:nth-child(2),
  .salary-table td:nth-child(2) {
    width: 35%;
  }
  .salary-table th:nth-child(3),
  .salary-table td:nth-child(3) {
    width: 25%;
  }
}
/* --- COST OF LIVING SECTION --- */
.living-cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.living-col-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.living-col-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.col-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Specific Icon Colors */
.housing-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.food-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.transport-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.misc-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.col-details h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.col-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #811401;
  margin-bottom: 0.1rem;
  white-space: nowrap;
}

.col-npr {
  font-size: 0.9rem;
  color: #5d0399;;
}

.col-total-box {
  background: linear-gradient(135deg, #F2F8F4, #E7F3EC);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* हल्का श्याडो */
}

.total-text h3 {
  font-size: 1.3rem;
  color: #1F5138; 
  margin-bottom: 0.3rem;
}

.total-text p {
  font-size: 0.9rem;
  color: #814501;
  margin: 0;
}

.total-amount {
  text-align: right;
}

.total-pln {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #388f5e;
  margin-bottom: 0.2rem;
}

.total-npr {
  display: block;
  font-size: 1rem;
  color: #814501;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .col-total-box {
    flex-direction: column;
    text-align: center;
  }
  .total-amount {
    text-align: center;
  }
}
   /*========================
      GUIDE PAGE STYLING
    ========================*/
.grad-guide {
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/guide-cover.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}.grad-guide h1 {
  color: #ffffff;
}
.grad-guide .icon-wrap {
  color: #0051ff;
  font-size: 3rem; 
  margin-bottom: 15px;
}
.grad-guide p {
  max-width: 800px; 
  margin: 20px auto;
  color: #e9f6ff;
}
.grad-guide .hero-subtitle {
  color: #00a2ff;
}
.prep-box {
  background: var(--color-surface2); 
  border-radius: 12px; 
  padding: 25px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
  border-left: 5px solid #2a5298; 
}

.doc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #fdfbf6 0%, #f5efe0 100%);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(200, 150, 80, 0.25);
}

/* subtle paper texture lines, like ruled/ledger paper */
.doc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 27px,
    rgba(150, 115, 40, 0.20) 28px
  );
  pointer-events: none;
}

/* Top strip — like a folder tab / letterhead */
.doc-top {
  padding: 14px 16px 8px;
  border-bottom: 1px dashed rgba(180, 150, 80, 0.4);
  background-color: #0047A0;
  position: relative;
  z-index: 1;
}

.np-text {
  font-family: "Preeti", "Noto Sans Devanagari", serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Middle — icon area, like a wax seal / stamp */
.doc-middle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #0047A0;
  position: relative;
  z-index: 1;
}

.doc-middle i {
  filter: drop-shadow(0 2px 3px rgba(150, 110, 20, 0.35));
}

/* Bottom — like a printed document title/footer */
.doc-bottom {
  padding: 10px 12px 16px;
  border-top: 1px dashed rgba(180, 150, 80, 0.4);
  background-color: #0047A0;
  position: relative;
  z-index: 1;
}

.en-text {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Optional: hover lift feel, since it's inside .group already */
.premium-card .doc-card {
  transition: box-shadow 0.3s ease;
}

.group:hover .premium-card .doc-card {
  box-shadow: inset 0 0 0 1px rgba(180, 150, 80, 0.5),
              0 6px 14px rgba(120, 90, 20, 0.15);
}

    /* Welfare Section */
.welfare-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:24px;
    margin-top:40px;
}

.welfare-card{
    padding:28px 24px;
    border-radius:16px;
    border:1px solid;
    text-align:center;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.welfare-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.welfare-card .icon{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.welfare-card h4{
    margin-bottom:10px;
    font-size:1.15rem;
    font-weight:700;
}

.welfare-card .amount{
    font-size:1.55rem;
    font-weight:800;
    margin-bottom:10px;
    color:#334155;
}

.welfare-card p{
    font-size:14px;
    line-height:1.6;
    margin:0;
    color:#64748b;
}

/* -------- Card 1 -------- */

.welfare-1{
    background:#FEF2F2;
    border-color:#FCA5A5;
}

.welfare-1 .icon{
    background:#FEE2E2;
    color:#B91C1C;
}

.welfare-1 h4{
    color:#B91C1C;
}

/* -------- Card 2 -------- */

.welfare-2{
    background:#FFF7ED;
    border-color:#FDBA74;
}

.welfare-2 .icon{
    background:#FED7AA;
    color:#C2410C;
}

.welfare-2 h4{
    color:#C2410C;
}

/* -------- Card 3 -------- */

.welfare-3{
    background:#F8FAFC;
    border-color:#CBD5E1;
}

.welfare-3 .icon{
    background:#E2E8F0;
    color:#475569;
}

.welfare-3 h4{
    color:#334155;
}

/* -------- Card 4 -------- */

.welfare-4{
    background:#ECFDF5;
    border-color:#86EFAC;
}

.welfare-4 .icon{
    background:#D1FAE5;
    color:#047857;
}

.welfare-4 h4{
    color:#047857;
}

/* -------- Card 5 -------- */

.welfare-5{
    background:#EFF6FF;
    border-color:#93C5FD;
}

.welfare-5 .icon{
    background:#DBEAFE;
    color:#2563EB;
}

.welfare-5 h4{
    color:#1D4ED8;
}

/* -------- Card 6 -------- */

.welfare-6{
    background:#F5F3FF;
    border-color:#C4B5FD;
}

.welfare-6 .icon{
    background:#EDE9FE;
    color:#7C3AED;
}

.welfare-6 h4{
    color:#6D28D9;
}
    
/* Ensure visibility if JS fails */
.v-step, .prep-box, .welfare-grid, .danger-box, .info-card, .faq-item {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Warning & Destination*/

.alert-card,
.destination-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    transition:.35s ease;
}

.alert-card{
    border:1px solid #FCA5A5;
    background:#FEF2F2;
}

.destination-card{
    border:1px solid #86EFAC;
    background:#F0FDF4;
}

.alert-card:hover,
.destination-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

/* Header */

.card-top2 {
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:24px;
}

.card-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}

.card-label{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    margin-bottom:4px;
    letter-spacing:.4px;
}

.card-top2 h3{
    margin:0;
    font-size:1.55rem;
    font-weight:700;
    line-height:1.3;
}

/* Red */

.danger .card-icon{
    background:#FEE2E2;
    color:#DC2626;
}

.danger .card-label{
    color:#DC2626;
}

.danger h3{
    color:#991B1B;
}

/* Blue */

.primary .card-icon{
    background: #DCFCE7;   /* Light green */
    color: #15803D;        /* Green icon */
}

.primary .card-label{
    color: #15803D;
}

.primary h3{
    color: #166534;        /* Dark green */
}

/*   Red Flags  */

.alert-list{
    list-style:none;
    padding:0;
    margin:0;
}

.alert-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:18px;
    color:#374151;
    line-height:1.7;
}

.alert-list li:last-child{
    margin-bottom:0;
}

.alert-list li::before{
    content:"✖";
    position:absolute;
    left:0;
    top:2px;
    color:#DC2626;
    font-weight:700;
}

.alert-list strong{
    color:#991B1B;
}

/*  Destination  */
.destination-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.destination-item{
    background:#ffffff;
    border-radius:12px;
    padding:18px;
    border-left:5px solid #22C55E;
}

.destination-item h4{
    margin:0 0 8px;
    color:#166534;
    font-size:1.05rem;
    display:flex;
    align-items:center;
    gap:10px;
}

.destination-item p{
    margin:0;
    color:#475569;
    line-height:1.7;
}

.destination-item i{
    color:#16A34A;
}

.overline-guide {
  color: #4B7BFF !important;
}

#process-guide .v-step-marker {
  background: linear-gradient(135deg, #4B7BFF 0%, #1F4FD8 100%);
}

#process-guide .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #1F4FD8 0%, #9ea7ce 25%, #436cdf 50%, #9ea7ce 75%, #1F4FD8 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(67, 97, 232, 0.4)) !important;
}

#faq-guide .faq-item::before {
  background: linear-gradient(135deg, #4B7BFF 0%, #1F4FD8 100%);
}

#faq-guide .faq-item:hover {
  border-color: rgba(78, 67, 232, 0.25);
  box-shadow:
    0 10px 25px rgba(24, 41, 190, 0.08),
    0 0 20px rgba(78, 67, 232, 0.05);
}

#faq-guide .faq-arrow {
  color: #1F4FD8;
  background: #eaecf8;
}
@media(max-width:768px){
.grid-2-col{
    grid-template-columns:1fr;
}
.alert-card,
.destination-card{
    padding:22px;
}
.card-top2 h3{
    font-size:1.3rem;
}
.card-icon{
    width:54px;
    height:54px;
    font-size:22px;
}
}

.guide-btn1 {
  background-color: #ffffff !important;
  color: #2563EB !important;
  border: 2px solid #2563EB !important;
}
.guide-btn1:hover {
  background-color: #2563EB !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.08),
    0 0 20px rgba(96, 165, 250, 0.05) !important;
}

   /*========================
      DOCUMENTS PAGE STYLING
    ========================*/
.grad-doc {
  background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/documents-cover.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}.grad-doc h1 {
  color: #ffffff;
}
.grad-doc .icon-wrap-doc {
  color: #25A18E;
  font-size: 3rem; 
  margin-bottom: 15px;
}
.grad-doc p {
  max-width: 800px; 
  margin: 20px auto;
  color: #e9ffea;
}
.grad-doc .hero-subtitle {
  color: #22c55e;
}
.overline-doc {
  color: #22c55e !important;
}

.passport-card {
  width: 280px; 
  height: 380px !important;
  background-color: #122b1c;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%),
    url('https://www.transparenttextures.com/patterns/leather.png');
  border-radius: 12px;
  border: none !important;
  box-shadow: 
    0 15px 25px rgba(0,0,0,0.5), 
    inset 0 0 20px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  box-sizing: border-box; 
  position: relative;
  overflow: hidden;
}

.passport-top .np-text, 
.passport-bottom .en-text {
  color: #d4af37;
  text-shadow: 
    0px -1px 1px rgba(0, 0, 0, 0.8), 
    0px 1px 1px rgba(255, 255, 255, 0.2);
  text-align: center;
  margin: 0;
}

.passport-top .np-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 3px; 
  line-height: 1.3;
}

.passport-bottom .en-text {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px; 
  line-height: 1.4;
}
.passport-bottom .en-text2 {
  margin-bottom: 20px;
}

.passport-emblem {
  width: 140px; 
  height: 120px;
  filter: brightness(50%) sepia(100%) hue-rotate(5deg) saturate(600%) contrast(100%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.document-card .icon {
  color: #ffffff; 
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.document-card h4 {
  color: #F1F8F0;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.document-card p {
  color: #8FD14F; /* soft light gray, easier on eyes than pure white for body text */
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.document-card {
  background-image: linear-gradient(rgba(10,30,15,0.65), rgba(10,30,15,0.99)), var(--bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.document-card:nth-child(1) { --bg-img: url('images/laborpermit.webp'); }
.document-card:nth-child(2) { --bg-img: url('images/nepalipassport.jpg'); }
.document-card:nth-child(3) { --bg-img: url('images/medicalreport.webp'); }
.document-card:nth-child(4) { --bg-img: url('images/policeclearance.jpg'); }
.document-card:nth-child(5) { --bg-img: url('images/nepalicitizenship.jpg'); }
.document-card:nth-child(6) { --bg-img: url('images/biodata.png'); }
.document-card:nth-child(7) { --bg-img: url('images/ppsizephoto.jpg'); }
.document-card:nth-child(8) { --bg-img: url('images/orientationcertificate.jpeg'); }
.document-card:nth-child(9) { --bg-img: url('images/kalyankarikosh.jpg'); }
.document-card:nth-child(10) { --bg-img: url('images/educationcertificate.jpg'); }
.document-card:nth-child(11) { --bg-img: url('images/contractpaper.jpg'); }

#doc-guide .v-step-marker {
  background: linear-gradient(135deg, #4BC97B 0%, #1F8A4F 100%);
}

#doc-guide .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #1F8A4F 0%, #9ecab0 25%, #43a86c 50%, #9ecab0 75%, #1F8A4F 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(31, 138, 79, 0.4)) !important;
  top: 70px !important;
  height: calc(100% - 100px) !important;
}

#faq-doc .faq-item::before {
  background: linear-gradient(135deg, #4BC97B 0%, #1F8A4F 100%);
}

#faq-doc .faq-item:hover {
  border-color: rgba(46, 125, 50, 0.25);
  box-shadow:
    0 10px 25px rgba(20, 110, 60, 0.08),
    0 0 20px rgba(46, 125, 50, 0.05);
}

#faq-doc .faq-arrow {
  color: #1F8A4F;
  background: #e8f5e9;
}

.safety-banner {
    background-color: #14532d; /* Dark Green */
    border-radius: 12px;
    padding: 2rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .safety-banner {
        flex-direction: row;
    }
}

.safety-icon {
    font-size: 3rem;
    color: #facc15; /* Yellow */
    flex-shrink: 0;
}

.safety-content {
    flex-grow: 1;
}

.safety-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.safety-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #dcfce7; /* Light Green Text */
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .safety-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.safety-list li {
    display: flex;
    align-items: flex-start;
}

.safety-list li i.fa-check {
    color: #4ade80; /* Brighter Green for Checkmarks */
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

/* Warning Item specific styling */
.safety-warning-item {
    color: #fde047; /* Yellow Warning Text */
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .safety-warning-item {
        grid-column: span 2 / span 2; /* Makes it full width on desktop */
    }
}

.safety-warning-item i.fa-exclamation-triangle {
    color: #facc15;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.doc-btn1 {
  background-color: #ffffff !important;
  color: #059669 !important;
  border: 2px solid #059669 !important;
}
.doc-btn1:hover {
  background-color: #059669 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(5, 150, 105, 0.08),
    0 0 20px rgba(52, 211, 153, 0.05) !important;
}

/* =========================================
   LABOUR PERMIT PAGE CUSTOM CSS (ORANGE THEME)
   ========================================= */

/* Hero Banner */
.lp-hero {
    background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/laborpermit-cover.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.lp-hero h1 {
  color: #ffffff;
}

.lp-hero .hero-subtitle {
  color: #ea580c; /* Bright Yellow */
  margin-top: 15px;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.lp-icon-wrap i {
    font-size: 4rem;
    color: #ea580c;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lp-intro-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Split Grid (Who Needs It) */
.lp-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .lp-split-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lp-info-card {
    background: #fcfbf7;
    border: 1px solid #fcd9b6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.lp-card-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}
.lp-card-header i { font-size: 1.5rem; }
.lp-card-header.bg-orange { background: #ea580c; }
.lp-card-header.bg-dark { background: #779999; }

.lp-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}
.lp-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}
.lp-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: bold;
}

/* Feature Grid (Benefits) */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.lp-feat-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-bottom: 4px solid #ea580c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.lp-feat-box:hover {
    transform: translateY(-5px);
}
.lp-feat-box i {
    font-size: 2.5rem;
    color: #ea580c;
    margin-bottom: 15px;
}
.lp-feat-box h4 {
    margin-bottom: 10px;
    color: #1f2937;
}

/* Custom Table for Fees */
.lp-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.lp-table {
    width: 100%;
    border-collapse: collapse;
}
.lp-table th {
    background: #ea580c;
    color: white;
    padding: 15px;
    text-align: left;
}
.lp-table td {
    padding: 15px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}
.lp-table tr:hover { background: #fff7ed; }
.table-p {
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
  margin-top: 18px;    
  margin-left: 0px;    
  margin-right: 15px; 
  margin-bottom: 0px;
  text-align: center;
}

/* Action Cards (Renewal/Loss) */
.lp-action-card {
    background: #fff;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 30px;
}
.lp-action-card h3 {
    color: #ea580c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-check-list { list-style: none; padding: 0; margin-top: 15px; }
.lp-check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.lp-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ea580c;
}

#laborpermit .v-step-marker {
  background: linear-gradient(135deg, #FF8A4B 0%, #EA580C 100%);
}

#laborpermit .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #EA580C 0%, #f3c2a0 25%, #f2793a 50%, #f3c2a0 75%, #EA580C 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(234, 88, 12, 0.4)) !important;
  top: 70px !important;
  height: calc(100% - 110px) !important;
}

#lp-guide .faq-item::before {
  background: linear-gradient(135deg, #FF8A4B 0%, #EA580C 100%);
}

#lp-guide .faq-item:hover {
  border-color: rgba(194, 65, 12, 0.25);
  box-shadow:
    0 10px 25px rgba(180, 60, 10, 0.08),
    0 0 20px rgba(154, 52, 18, 0.05);
}

#lp-guide .faq-arrow {
  color: #EA580C;
  background: #fef3e8;
}

.lp-btn1 {
  background-color: #ffffff !important;
  color: #EA580C !important;
  border: 2px solid #EA580C !important;
}
.lp-btn1:hover {
  background-color: #EA580C !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(234, 88, 12, 0.08),
    0 0 20px rgba(251, 146, 60, 0.05) !important;
}

/* =========================================
   TRAINING / SKILLS PAGE CUSTOM CSS (PURPLE THEME)
   ========================================= */

/* Hero Banner */
.tr-hero {
    background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/training-cover.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.tr-hero .hero-subtitle {
  color: #C084FC; /* Bright Purple */
  margin-top: 15px;
}

.tr-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.tr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
  color: #FBBF24;
}

.tr-icon-wrap i {
    font-size: 4rem;
    color: #4C1D95;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tr-intro-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Split Grid (Types of Training) */
.tr-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .tr-split-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tr-info-card {
    background: #F9FAFB;
    border: 1px solid #C4B5FD;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.tr-card-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}
.tr-card-header h3 { color: #ffffff; }
.tr-card-header i { font-size: 1.5rem; }
.tr-card-header.bg-purple { background: #4C1D95; }
.tr-card-header.bg-dark-purple { background: #6D28D9; } /* Slightly lighter purple for contrast */

.tr-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}
.tr-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4B5563;
}
.tr-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4C1D95;
    font-weight: bold;
}

/* Feature Grid (Benefits) */
.tr-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.tr-feat-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-bottom: 4px solid #4C1D95;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.tr-feat-box:hover {
    transform: translateY(-5px);
}
.tr-feat-box i {
    font-size: 2.5rem;
    color: #4C1D95;
    margin-bottom: 15px;
}
.tr-feat-box h4 {
    margin-bottom: 10px;
    color: #1F2937;
}

/* Custom Table for Fees */
.tr-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.tr-table {
    width: 100%;
    border-collapse: collapse;
}
.tr-table th {
    background: #4C1D95;
    color: white;
    padding: 15px;
    text-align: left;
}
.tr-table td {
    padding: 15px;
    border-bottom: 1px solid #F3F4F6;
    color: #4B5563;
}
.tr-table tr:hover { background: #F5F3FF; }
.table-p {
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
  margin-top: 18px;    
  margin-left: 0px;    
  margin-right: 15px; 
  margin-bottom: 0px;
  text-align: center;
}

/* Action Cards (Fraud/Info) */
.tr-action-card {
    background: #fff;
    border: 1px solid #C4B5FD;
    border-radius: 12px;
    padding: 30px;
}
.tr-warning-card { border-color: #F87171; } /* Reddish border for warning */
.tr-warning-card h3 { color: #DC2626; }

.tr-action-card h3 {
    color: #4C1D95;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tr-check-list { list-style: none; padding: 0; margin-top: 15px; }
.tr-check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.tr-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4C1D95;
}
.warning-list li::before {
    content: '\f12a'; /* Exclamation icon */
    color: #DC2626;
}

/* Timeline Customization */
#trainingprocess .v-step-marker {
  background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 100%);
}

#trainingprocess .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #4C1D95 0%, #C4B5FD 25%, #8B5CF6 50%, #C4B5FD 75%, #4C1D95 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(76, 29, 149, 0.4)) !important;
  top: 70px !important;
  height: calc(100% - 110px) !important;
}

/* FAQs Customization */
#tr-guide .faq-item::before {
  background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 100%);
}

#tr-guide .faq-item:hover {
  border-color: rgba(76, 29, 149, 0.25);
  box-shadow:
    0 10px 25px rgba(76, 29, 149, 0.08),
    0 0 20px rgba(109, 40, 217, 0.05);
}

#tr-guide .faq-arrow {
  color: #4C1D95;
  background: #F5F3FF;
}

.tr-btn1 {
  background-color: #ffffff !important;
  color: #4C1D95 !important;
  border: 2px solid #4C1D95 !important;
}
.tr-btn1:hover {
  background-color: #4C1D95 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(76, 29, 149, 0.08),
    0 0 20px rgba(139, 92, 246, 0.05) !important;
}

/* =========================================
   BEFORE FLYING PAGE CUSTOM CSS (TEAL THEME)
   ========================================= */

/* Hero Banner */
.bf-hero {
    background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/beforefly-cover.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.bf-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.bf-hero .hero-subtitle {
  color: #22c55e; /* Bright Teal */
  margin-top: 15px;
}

.bf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bf-icon-wrap i {
    font-size: 4rem;
    color: #CCFBF1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bf-intro-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Split Grid (Packing) */
.bf-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .bf-split-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bf-info-card {
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.bf-card-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}
.bf-card-header i { font-size: 1.5rem; }
.bf-card-header.bg-teal { background: #0D9488; }
.bf-card-header.bg-dark-teal { background: #0F766E; }

.bf-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}
.bf-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4B5563;
}
.bf-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0D9488;
    font-weight: bold;
}

/* Feature Grid (Banking) */
.bf-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.bf-feat-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-bottom: 4px solid #0D9488;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.bf-feat-box:hover {
    transform: translateY(-5px);
}
.bf-feat-box i {
    font-size: 2.5rem;
    color: #0D9488;
    margin-bottom: 15px;
}
.bf-feat-box h4 {
    margin-bottom: 10px;
    color: #1F2937;
}

/* Custom Table for Limits */
.bf-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.bf-table {
    width: 100%;
    border-collapse: collapse;
}
.bf-table th {
    background: #0D9488;
    color: white;
    padding: 15px;
    text-align: left;
}
.bf-table td {
    padding: 15px;
    border-bottom: 1px solid #F3F4F6;
    color: #4B5563;
}
.bf-table tr:hover { background: #F0FDFA; }

/* Action Cards (Fraud/Info) */
.bf-action-card {
    background: #fff;
    border: 1px solid #99F6E4;
    border-radius: 12px;
    padding: 30px;
}
.bf-warning-card { border-color: #F87171; } /* Reddish border for warning */
.bf-warning-card h3 { color: #DC2626; }

.bf-action-card h3 {
    color: #0D9488;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bf-check-list { list-style: none; padding: 0; margin-top: 15px; }
.bf-check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.bf-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0D9488;
}
.warning-list li::before {
    content: '\f12a'; /* Exclamation icon */
    color: #DC2626;
}

/* Timeline Customization */
#settlingin .v-step-marker {
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
}

#settlingin .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #0D9488 0%, #99F6E4 25%, #2DD4BF 50%, #99F6E4 75%, #0D9488 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(13, 148, 136, 0.4)) !important;
  top: 70px !important;
  height: calc(100% - 110px) !important;
}

/* FAQs Customization */
#bf-guide .faq-item::before {
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
}

#bf-guide .faq-item:hover {
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow:
    0 10px 25px rgba(13, 148, 136, 0.08),
    0 0 20px rgba(15, 118, 110, 0.05);
}

#bf-guide .faq-arrow {
  color: #0D9488;
  background: #F0FDFA;
}

.bf-btn1 {
  background-color: #ffffff !important;
  color: #0891B2 !important;
  border: 2px solid #0891B2 !important;
}
.bf-btn1:hover {
  background-color: #0891B2 !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(8, 145, 178, 0.08),
    0 0 20px rgba(45, 190, 220, 0.05) !important;
}

/* =========================================
   FRAUD PREVENTION PAGE CUSTOM CSS (RED THEME)
   ========================================= */

/* Hero Banner */
.fp-hero {
    background-image: linear-gradient(135deg, rgba(10,17,40,0.7) 0%, rgba(0,0,0,0.9) 100%), url(/images/fraudprevent-cover.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.fp-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.fp-hero .hero-subtitle {
  color: #F87171; /* Bright Red */
  margin-top: 15px;
}

.fp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.fp-icon-wrap i {
    font-size: 4rem;
    color: #F87171;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.fp-intro-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Split Grid (Scams & Prevention) */
.fp-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .fp-split-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fp-info-card {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.fp-card-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}
.fp-card-header h3 { color: #ffffff !important; }  
.fp-card-header i { font-size: 1.5rem; }
.fp-card-header.bg-red { background: #DC2626; }
.fp-card-header.bg-dark-red { background: #991B1B; }

.fp-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}
.fp-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4B5563;
}
.fp-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
}

/* Feature Grid (Support Mechanisms) */
.fp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.fp-feat-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-bottom: 4px solid #DC2626;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.fp-feat-box:hover {
    transform: translateY(-5px);
}
.fp-feat-box i {
    font-size: 2.5rem;
    color: #DC2626;
    margin-bottom: 15px;
}
.fp-feat-box h4 {
    margin-bottom: 10px;
    color: #1F2937;
}

/* Custom Table for Contacts */
.fp-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.fp-table {
    width: 100%;
    border-collapse: collapse;
}
.fp-table th {
    background: #DC2626;
    color: white;
    padding: 15px;
    text-align: left;
}
.fp-table td {
    padding: 15px;
    border-bottom: 1px solid #F3F4F6;
    color: #4B5563;
}
.fp-table tr:hover { background: #FEF2F2; }

/* Action Cards (Red Flags & Verification) */
.fp-action-card {
    background: #fff;
    border: 1px solid #FCA5A5;
    border-radius: 12px;
    padding: 30px;
}
.fp-warning-card { border-color: #EF4444; background: #FEF2F2; }
.fp-warning-card h3 { color: #B91C1C; }

.fp-info-card { border-color: #93C5FD; background: #F0FDF4; } /* Subtle green for safe practices */
.fp-info-card h3 { color: #15803D; }

.fp-action-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fp-check-list { list-style: none; padding: 0; margin-top: 15px; }
.fp-check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.fp-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #15803D;
}
.warning-list li::before {
    content: '\f12a'; /* Exclamation icon */
    color: #B91C1C;
}

/* Timeline Customization */
#reportfraud .v-step-marker {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

#reportfraud .vertical-timeline::before {
  background-image: linear-gradient(to bottom, #DC2626 0%, #FCA5A5 25%, #EF4444 50%, #FCA5A5 75%, #DC2626 100%) !important;
  filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.4)) !important;
  top: 70px !important;
  height: calc(100% - 110px) !important;
}

/* FAQs Customization */
#fp-guide .faq-item::before {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

#fp-guide .faq-item:hover {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow:
    0 10px 25px rgba(220, 38, 38, 0.08),
    0 0 20px rgba(185, 28, 28, 0.05);
}

#fp-guide .faq-arrow {
  color: #DC2626;
  background: #FEF2F2;
}
.fp-btn1 {
  background-color: #ffffff !important;
  color: #991B1B !important;
  border: 2px solid #991B1B !important;
}
.fp-btn1:hover {
  background-color: #991B1B !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 25px rgba(153, 27, 27, 0.08),
    0 0 20px rgba(190, 50, 50, 0.05) !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}