
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 body{
    font-family: 'Quicksand', sans-serif;
}
  :root{
    --ink:#1a1f2b;
    --muted:#6b7280;
    --hint:#9ca3af;
    --line:#e5e7eb;
    --card:#ffffff;
    --page:#f7f8fa;
    --accent:#2f5fd6;
    --accent-dark:#1f3f9e;
    --accent-tint:#eaf0fd;
    --success-tint:#e4f6ee;
    --success-text:#1a7a4c;
    --radius:12px;
  }
  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    /* background: rgba(10,25,60,0.92); backdrop-filter: blur(8px); */
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 80px;
  }
  .glass-nav{
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);

    padding: 12px 28px;
    /* border-rasdius: 50px; */

    background: rgb(254 254 254);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
  .nav-logo { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 1.1rem; }
  .nav-logo img { width: 220px; height: 56px; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: #fff; }
  .nav-cta {
    background: #2563eb; color: #fff; border: none; padding: 9px 22px;
    border-radius: 6px; font-size: .88rem; font-weight: 600; cursor: pointer; transition: background .2s;
  }
  .nav-cta:hover { background: #1d4ed8; }


  .home-page-hero {
    min-height: 100vh; padding-top: 62px;
    background: linear-gradient(135deg, #0a1940 0%, #0d2460 55%, #1a3a6e 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding-inline: 5%; position: relative; overflow: hidden;
  }

  .home-page-hero-bg-img {
    position: absolute; inset: 0;
    background: url('./images/banner.jpg') center/cover no-repeat;
    opacity: 0.22;
  }
  .home-page-hero-content { position: relative; z-index: 2; max-width: min-content; }
  .home-page-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    border-radius: 20px; padding: 5px 14px; font-size: .78rem; color: rgba(255,255,255,.85);
    margin-bottom: 24px; font-weight: 500;
  }
  .home-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
     margin-bottom: 18px;
  }
  .home-page-hero h1 span {
     color: #60a5fa;
    }
  .home-page-hero p {
    font-size: 1.05rem;
     color: rgba(255,255,255,.76);
     margin-bottom: 36px;
     line-height: 1.7;
  }
  .home-page-hero-search {
    display: flex; gap: 0;
     width: 100%;
      max-width: 540px;
       margin: 0 auto 36px;
    background: #fff;
    border-radius: 10px;
     overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .home-page-hero-search select {
    flex: 1; border: none;
     outline: none;
     padding: 14px 16px;
    font-size: .95rem;
     color: #374151;
      font-family: inherit;
  }
  .home-page-hero-search button {
    background: #2563eb;
     color: #fff;
      border: none;
       padding: 14px 26px;
    font-weight: 700;
     font-size: .95rem;
     cursor: pointer;
      transition: background .2s;
       white-space: nowrap;
  }
  .home-page-hero-search button:hover {
    background: #1d4ed8;
 }
  .home-page-hero-trust {
    display: flex;
     gap: 24px;
     justify-content: center;
      flex-wrap: wrap;
    }
  .home-page-trust-item {
     display: flex;
      align-items: center;
       gap: 7px;
        color: rgba(255,255,255,.72);
        font-size: .82rem;
    }
  .home-page-trust-item svg {
     width: 16px;
      height: 16px;
      color: #34d399;
       flex-shrink: 0;
     }
.home-page-stats-bar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:60px 5%;
  background:#f8fafc;
}.home-page-stats-bar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:60px 5%;
  background:#f8fafc;
}

.home-page-stat-item{
  background:#fff;
  border-radius:18px;
  padding:30px 20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.3s ease;
}

.home-page-stat-item:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.home-page-stat-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#dff7fb;
  display:flex;
  align-items:center;
  justify-content:center;
}

.home-page-stat-icon i{
  font-size:28px;
  color:#22b8cf;
}

.home-page-stat-num{
  font-size:25px;
  font-weight:800;
  color:#22b8cf;
  margin-bottom:10px;
}

.home-page-stat-label{
  font-size:15px;
  line-height:1.6;
  color:#0f4c5c;
}

@media(max-width:991px){
  .home-page-stats-bar{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .home-page-stats-bar{
    grid-template-columns:1fr;
  }
}
  section {
     padding: 80px 5%;
    }
  .home-page-section-label {
    display: inline-block; background: #eff6ff; color: #2563eb;
    font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
  }
  .home-page-section-title {
     font-size: clamp(1.6rem, 3vw, 2.2rem);
     font-weight: 800;
      color: #111827;
       margin-bottom: 10px;
     }
  .home-page-section-sub {
     font-size: 1rem;
     color: #6b7280;
      max-width: 560px;
      line-height: 1.65;
     }


  .home-page-why {
     background: #f9fafb;
     }
  .home-page-why-grid {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
     margin-top: 48px;
  }
  .home-page-why-card {
    background: #fff;
     border-radius: 16px;
      padding: 32px 28px;
    border: 1px solid #e5e7eb;
     transition: box-shadow .2s, transform .2s;
  }
  .home-page-why-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,.1);
    transform: translateY(-3px);
}
  .home-page-why-card.featured {
     background: linear-gradient(135deg, #2563eb, #1e40af);
      color: #fff;
    }
  .home-page-why-card.featured .why-card-title {
     color: #fff;
    }
  .home-page-why-card.featured .why-card-text {
    color: rgba(255,255,255,.82);
}
  .home-page-why-icon {
    width: 44px; height: 44px; border-radius: 10px; background: #eff6ff;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  }
  .home-page-why-card.featured .why-icon { background: rgba(255,255,255,.2); }
  .home-page-why-icon svg { width: 22px; height: 22px; color: #2563eb; }
  .home-page-why-card.featured .why-icon svg { color: #fff; }
  .home-page-why-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #111827; }
  .home-page-why-card-title-blue { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
  .home-page-why-card-text { font-size: .9rem; color: #6b7280; line-height: 1.65; }
   .home-page-why-card-text-blue { font-size: .9rem; color: #fff; line-height: 1.65; }
  .home-page-cta-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fff; font-size: .88rem; font-weight: 600; margin-top: 16px; text-decoration: none;
  }
.home-page-destinations{
  padding:80px 5%;
  background:#f8fafc;
}

.home-page-section-header{
  margin-bottom:50px;
}

.home-page-dest-2col{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-bottom:24px;
}

.home-page-dest-card-wrap{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  height:320px;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.home-page-dest-bg{
  width:100%;
  height:100%;
}

.home-page-dest-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.home-page-dest-card-wrap:hover .home-page-dest-bg img{
  transform:scale(1.08);
}

.home-page-dest-bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:24px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.35),
    transparent
  );
}

.home-page-dest-name{
  color:#fff;
  font-size:26px;
  font-weight:800;
  margin-bottom:8px;
}

.home-page-dest-desc{
  color:rgba(255,255,255,.85);
  line-height:1.6;
  margin-bottom:14px;
}

.home-page-dest-btn{
  background:#fff;
  color:#111827;
  border:none;
  border-radius:30px;
  padding:10px 18px;
  font-weight:600;
  cursor:pointer;
}
.home-page-dest-card-wrap{
  height:460px;
  border-radius:24px;
}

.home-page-dest-bg{
  height:100%;
}

.home-page-dest-bottom{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:30px;
  background:linear-gradient(
    to top,
    rgba(8,15,35,.95),
    rgba(8,15,35,.55),
    transparent
  );
}

.home-page-dest-name{
  color:#fff;
  font-size:20px;
  font-weight:800;
  margin-bottom:14px;
}

.home-page-dest-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:50px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:14px;
  margin-bottom:18px;
}

.home-page-pill-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#20d3ff;
  flex-shrink:0;
}

.home-page-dest-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.home-page-dest-link{
  color:#20d3ff;
  text-decoration:none;
  font-weight:700;
  font-size: 15px;
}

.home-page-dest-status{
  padding:8px 14px;
  border-radius:30px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:13px;
  border:1px solid rgba(255,255,255,.15);
}

@media(max-width:768px){

  .home-page-dest-2col{
    grid-template-columns:1fr;
  }

  .home-page-dest-card-wrap{
    height:280px;
  }

}


  .home-page-partners { background: #f9fafb; text-align: center; }
  .home-page-partners-stats {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; margin-top: 48px;
  }
  .home-page-p-stat { text-align: center; }
  .home-page-p-stat-num { font-size: 2rem; font-weight: 800; color: #2563eb; }
  .home-page-p-stat-label { font-size: .85rem; color: #6b7280; margin-top: 4px; font-weight: 500; }


  .home-page-how { background: #fff; }
  .home-page-how-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px;
  }
  .home-page-how-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
  .home-page-how-tab {
    padding: 7px 18px; border-radius: 20px; font-size: .85rem; font-weight: 600;
    border: 1.5px solid #e5e7eb; background: #fff; color: #6b7280; cursor: pointer; transition: all .2s;
  }
  .home-page-how-tab.active { background: #2563eb; color: #fff; border-color: #2563eb; }
  .home-page-how-steps { display: flex; flex-direction: column; gap: 28px; }
  .home-page-how-step { display: flex; gap: 18px; align-items: flex-start; }
  .home-page-step-num {
    width: 38px; height: 38px; border-radius: 50%; background: #2563eb; color: #fff;
    font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .home-page-tab-content{
  display:none;
}

.home-page-tab-content.active{
  display:block;
}
  .home-page-step-content-title { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
  .home-page-step-content-text { font-size: .88rem; color: #6b7280; line-height: 1.65; }
  .home-page-how-image-wrap {
    border-radius: 20px; overflow: hidden; min-height: 380px;
    display: flex; align-items: center; justify-content: center; position: relative;
  }
  .home-page-how-image-placeholder {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }

  .home-page-how-image-placeholder svg { width: 56px; height: 56px; }
  .home-page-how-image-placeholder span { font-size: .82rem; }


  .home-page-digital-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    text-align: center; padding: 80px 5%;
  }
  .home-page-digital-cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
  .home-page-digital-cta p { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 36px; }
  .home-page-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .home-page-btn-primary {
    background: #fff; color: #2563eb; border: none; padding: 13px 30px;
    border-radius: 8px; font-weight: 700; font-size: .95rem; cursor: pointer; transition: opacity .2s;
  }
  .home-page-btn-primary:hover { opacity: .92; }
  .home-page-cta-features { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
  .home-page-cta-feat { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.8); font-size: .82rem; }
  .home-page-cta-feat svg { width: 16px; height: 16px; color: #34d399; }


  .home-page-testimonials { background: #fff; }
  .home-page-test-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px; margin-top: 48px;
  }
  .home-page-test-card {
    background: #f9fafb; border-radius: 16px; padding: 28px 24px;
    border: 1px solid #e5e7eb;
  }
  .home-page-test-quote-icon { color: #2563eb; font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 14px; }
  .home-page-test-text { font-size: .9rem; color: #374151; line-height: 1.7; margin-bottom: 20px; }
  .home-page-test-author { display: flex; align-items: center; gap: 12px; }
  .home-page-test-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .9rem;
  }
  .home-page-test-name { font-weight: 700; font-size: .88rem; color: #111827; }
  .home-page-test-stars { color: #f59e0b; font-size: .78rem; }


  footer {
    background: #0a1940; color: rgba(255,255,255,.65);
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
  }
  .footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 12px; }
  .footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; }
  .footer-col a { display: block; color: rgba(255,255,255,.6); font-size: .85rem; text-decoration: none; margin-bottom: 8px; transition: color .2s; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
     justify-content: space-between;
     align-items: center;
      flex-wrap: wrap;
       gap: 12px;
  }
  .footer-bottom span {
    font-size: .82rem;
}

  @media (max-width: 768px) {
    .home-page-nav-links { display: none; }
    .home-page-stat-item { border-right: none; padding: 12px 20px; }
    .home-page-dest-2col { grid-template-columns: 1fr; }
    .home-page-how-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .home-page-partners-stats { gap: 28px; }

  }
  @media (max-width:768px){

    .home-page-banner-search-row{
        flex-direction:column;
        gap:15px;
        align-items:stretch;
    }

    .home-page-banner-search-divider{
        display:none;
    }

    .home-page-banner-search-field{
        width:100%;
    }

    .home-page-banner-search-btn{
        width:100%;
        margin-left:0;
        margin-top:5px;
    }

    .home-page-banner-search-card{
        padding:20px 15px;
    }

    .home-page-banner-trust-row{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:8px;
        text-align:center;
    }

    .banner-trust-sep{
        display:none;
    }
}

@media (max-width:768px){

    .home-page-banner-search-row{
        flex-direction:column;
        align-items:stretch;
        gap:15px;
    }

    .home-page-banner-search-divider{
        display:none;
    }

    .home-page-banner-search-field{
        width:100%;
    }

    .home-page-banner-search-btn{
        width:100%;
        margin-left:0;
    }

    .home-page-banner-search-card{
        padding:20px 15px;
    }
}


  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  .home-page-banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
  }


  .home-page-banner-bg-img {
    position: absolute;
    inset: 0;
    background: url('./images/banner.jpg') center / cover no-repeat;
    z-index: 0;
  }


  .home-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10, 10, 20, 0.38) 0%,
      rgba(10, 10, 20, 0.55) 50%,
      rgba(10, 10, 20, 0.78) 100%
    );
    z-index: 1;
  }


  .home-page-banner-nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 48px;
  }

  .home-page-banner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .home-page-banner-logo-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .home-page-banner-logo-text span {
    font-weight: 400;
  }

  .home-page-banner-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 24px;
    padding: 7px 18px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .home-page-banner-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
  }

  .home-page-banner-body {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 48px 64px;
  }

  .home-page-banner-h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    max-width: 860px;
  }

  .home-page-banner-subtitle {
    color: rgba(255, 255, 255, 0.80);
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 40px;
  }


  .home-page-banner-search-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 28px 30px 22px;
    width: 100%;
    max-width: max-content;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
  }

  .home-page-banner-search-row {
    display: flex;
    align-items: flex-end;
    gap: 0;
  }

  .home-page-banner-search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .home-page-banner-search-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .home-page-banner-select-wrap {
    position: relative;
  }

  .home-page-banner-select {
    width: 100%;
    padding: 12px 38px 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 600;
    color: #111827;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
  }

  .home-page-banner-select:focus {
    border-color: #93c5fd;
  }

  .home-page-banner-select-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
  }

  .home-page-banner-search-divider {
    width: 1px;
    height: 46px;
    background: #e5e7eb;
    margin: 0 18px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 1px;
  }

  .home-page-banner-search-btn {
    background: #7dd3e8;
    color: #1e3a5f;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    height: 46px;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
  }

  .home-page-banner-search-btn:hover {
    background: #5bc4de;
  }

  .home-page-banner-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
    margin-top: 18px;
  }

  .home-page-banner-trust-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #86efac;
    flex-shrink: 0;
  }

  .home-page-banner-trust-text {
    font-size: 0.80rem;
    color: #6b7280;
    font-weight: 500;
  }

  .banner-trust-sep {
    color: #9ca3af;
    font-size: 0.80rem;
  }

  @media (max-width: 768px) {
    .home-page-banner-nav { padding: 16px 20px; }
    .home-page-banner-body { padding: 16px 20px 48px; }
    .home-page-banner-search-card { padding: 20px 16px 18px; }
    .home-page-banner-search-row { flex-direction: column; gap: 14px; }
    .home-page-banner-search-divider { display: none; }
    .home-page-banner-search-btn { width: 100%; margin-left: 0; }
    .home-page-banner-badge { display: none; }
  }


  /* home page css */








  /* NAVBAR */
  .inner-travel-page-navbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 40px; background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100;
  }
  .inner-travel-page-navbar .logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: #1a3c6e; }
  .inner-travel-page-navbar .logo span { color: #f60; }
  .inner-travel-page-navbar-logo-img {
    width: 220px;
    height: 42px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}
  .inner-travel-page-navbar nav { display: flex; gap: 24px; font-size: 13px; color: #444; }
  .inner-travel-page-navbar nav a:hover { color: #2563eb; }
  .inner-travel-page-nav-btn {
    background: #2563eb; color: #fff; padding: 16px 20px; border-radius: 6px;
    font-size: 13px; font-weight: 600; cursor: pointer; border: none;
  }
  .inner-travel-page-nav-btn:hover { background: #1a4fc7; }

  /* HERO */
  .inner-travel-page-hero {
    position: relative; min-height: 380px; display: flex; align-items: center;
    background: linear-gradient(120deg, #0a2a5c 60%, #0e4a8a 100%);
    overflow: hidden;
  }
  .inner-travel-page-hero-bg {
    position: absolute; right: 0; top: 0; bottom: 0; width: 52%;
    background: url('./images/curac.jpg') center/cover no-repeat;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.85;
  }
  .inner-travel-page-hero-content {
    position: relative; z-index: 2; max-width: fit-content; padding: 60px 40px 60px 60px; color: #fff;
  }
  .inner-travel-page-hero-badge {
    background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.3);
    color: #a8d4ff; font-size: 11px; font-weight: 600; letter-spacing: 1px;
    padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 16px;
    text-transform: uppercase;
  }.inner-travel-page-hero{
    background:linear-gradient(135deg,#07152f,#0a2148);
    padding:90px 5%;
    display:grid;
    grid-template-columns:1fr 620px;
    gap:60px;
    align-items:center;
}

.inner-travel-page-hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(14,165,233,.15);
    border:1px solid rgba(14,165,233,.3);
    color:#22d3ee;
    font-size:13px;
    font-weight:600;
    margin-bottom:25px;
}

.inner-travel-page-hero h1{
    color:#fff;
    font-size:45px;
    line-height:1.05;
    margin-bottom:20px;
    font-weight:600;
}
.inner-travel-page-feature-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    background:rgba(14,165,233,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.inner-travel-page-feature-icon i{
    font-size:22px;
    color:#22d3ee;
}

.inner-travel-page-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
    max-width:550px;
}

.inner-travel-page-feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:35px 0;
}

.inner-travel-page-feature-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:25px;
    width: 290px;
}

.inner-travel-page-feature-card h4{
    color:#fff;
    margin-bottom:10px;
    font-size:18px;
}

.inner-travel-page-feature-card p{
    font-size:12px;
    color:#94a3b8;
}
.inner-travel-page-feature-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 13px;
}

.inner-travel-page-btn-primary{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:16px 30px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.inner-travel-page-hero-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.3);
}

@media(max-width:991px){

    .inner-travel-page-hero{
        grid-template-columns:1fr;
    }

    .inner-travel-page-hero h1{
        font-size:42px;
    }

    .inner-travel-page-feature-grid{
        grid-template-columns:1fr;
    }

    .inner-travel-page-hero-image img{
        height:350px;
    }
}
  .inner-travel-page-btn-secondary:hover { background: rgba(255,255,255,0.1); }

 .inner-travel-page-section{
  padding:90px 5%;
  background:#f8fafc;
}

.inner-travel-page-section-title{
  text-align:center;
  font-size:40px;
  font-weight:800;
  color:#000;
  margin-bottom:12px;
}
.inner-travel-page-section-title-adv{
  text-align:center;
  font-size:40px;
  font-weight:800;
  color:#fff;
  margin-bottom:12px;
}

.inner-travel-page-section-sub{
  text-align:center;
  color:#64748b;
  font-size:16px;
  margin-bottom:60px;
}

.inner-travel-page-how-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.inner-travel-page-step{
  background:#fff;
  border-radius:24px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
  position:relative;
}

.inner-travel-page-step:hover{
  transform:translateY(-8px);
}

.inner-travel-page-step-icon{
  width:80px;
  height:80px;
  margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#06b6d4);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.inner-travel-page-step h3{
  font-size:22px;
  margin-bottom:12px;
  color:#0f172a;
}

.inner-travel-page-step p{
  font-size:15px;
  line-height:1.7;
  color:#64748b;
}

.inner-travel-page-step-connector{
  display:none;
}
.inner-travel-page-pricing-bg{
  background:linear-gradient(180deg,#f8fbff 0%,#eef6ff 100%);
  padding:100px 5%;
}

.inner-travel-page-pricing-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.inner-travel-page-price-card{
  background:#fff;
  border-radius:28px;
  padding:40px 30px;
  position:relative;
  overflow:hidden;
  border:1px solid #e2e8f0;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
  transition:.35s;
}

.inner-travel-page-price-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(37,99,235,.15);
}

.inner-travel-page-price-card.featured{
  transform:scale(1.05);
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  border:none;
}

.inner-travel-page-price-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:#fff;
  color:#2563eb;
  padding:6px 14px;
  border-radius:30px;
  font-size:11px;
  font-weight:700;
}

.inner-travel-page-price-label{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:15px;
}

.inner-travel-page-price-amount{
  font-size:54px;
  font-weight:800;
  line-height:1;
  margin-bottom:10px;
}

.inner-travel-page-price-amount::before{
  content:"$";
  font-size:22px;
  vertical-align:top;
}

.inner-travel-page-price-desc{
  margin-bottom:25px;
  color:#64748b;
}

.inner-travel-page-price-card.featured .inner-travel-page-price-desc{
  color:rgba(255,255,255,.85);
}

.inner-travel-page-price-features{
  margin:25px 0;
  padding:0;
}

.inner-travel-page-price-features li{
  list-style:none;
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  position:relative;
  padding-left:28px;
}

.inner-travel-page-price-features li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#22c55e;
  font-weight:700;
}

.inner-travel-page-price-card.featured .price-features li{
  border-color:rgba(255,255,255,.15);
}

.inner-travel-page-price-card.featured .price-features li::before{
  color:#fff;
}

.inner-travel-page-price-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  background:#2563eb;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.inner-travel-page-price-card.featured .price-btn{
  background:#fff;
  color:#2563eb;
}

@media(max-width:991px){

  .inner-travel-page-pricing-cards{
    grid-template-columns:1fr;
  }

  .inner-travel-page--card.featured{
    transform:none;
  }

}

.inner-travel-page-what-is{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
  padding:40px 0;
}

.inner-travel-page-what-is-text h2{
  font-size:48px;
  line-height:1.15;
  font-weight:800;
  margin-bottom:24px;
  color:#0f172a;
}

.inner-travel-page-what-is-text h2 span{
  color:#2563eb;
}

.inner-travel-page-what-is-text p{
  font-size:16px;
  line-height:1.9;
  color:#64748b;
  margin-bottom:18px;
}

.inner-travel-page-what-is-text .highlight{
  color:#2563eb;
  font-weight:700;
}

.inner-travel-page-what-is-img{
  text-align:center;
}

.inner-travel-page-what-is-img img{
  width:100%;
  max-width:420px;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(37,99,235,.18);
  transition:.4s;
}

.inner-travel-page-what-is-img img:hover{
  transform:translateY(-8px);
}

.inner-travel-page-btn-primary{
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  border:none;
  padding:14px 28px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(37,99,235,.25);
}
.inner-travel-page-advantages-bg{
  background:linear-gradient(135deg,#0f172a,#1e3a8a);
  padding:100px 5%;
  position:relative;
  overflow:hidden;
  color: #fff;
}

.inner-travel-page-advantages-bg .section-title{
  color:#fff;
  font-size:48px;
}

.inner-travel-page-advantages-bg .section-title span{
  color:#38bdf8;
}

.inner-travel-page-advantages-bg .section-sub{
  color:rgba(255,255,255,.75);
  font-size:16px;
  margin-bottom:60px;
}

.inner-travel-page-adv-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.inner-travel-page-adv-card{
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:35px 25px;
  text-align:center;
  transition:.35s;
}

.inner-travel-page-adv-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,.12);
}

.inner-travel-page-adv-icon{
  width:80px;
  height:80px;
  margin:0 auto 20px;
  border-radius:20px;
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.inner-travel-page-adv-card h4{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
  line-height:1.4;
}

.inner-travel-page-adv-card p{
  color:rgba(255,255,255,.75);
  font-size:14px;
  line-height:1.8;
}

@media(max-width:991px){

  .inner-travel-page-adv-cards{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:576px){

  .inner-travel-page-adv-cards{
    grid-template-columns:1fr;
  }

}
/* DO I NEED */
.inner-travel-page-need-section{
    background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
    padding:90px 5%;
}

.inner-travel-page-need-inner{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.inner-travel-page-need-inner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#2563eb,#0ea5e9);
}

.inner-travel-page-need-inner h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
    color:#0f172a;
    line-height:1.2;
}

.inner-travel-page-need-inner h2 span{
    color:#2563eb;
}

.inner-travel-page-need-inner p{
    color:#64748b;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.inner-travel-page-need-inner strong{
    color:#2563eb;
    font-weight:700;
}

@media(max-width:768px){

    .inner-travel-page-need-inner{
        padding:30px 20px;
    }

    .inner-travel-page-need-inner h2{
        font-size:30px;
    }

    .inner-travel-page-need-inner p{
        font-size:15px;
    }
}
  /* COUNTRIES */
  .inner-travel-page-countries-bg { background: #f9fbff; }
  .inner-travel-page-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px; max-width: 1100px; margin: 0 auto;
  }
 .inner-travel-page-country-item{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:8px;
  padding:8px 10px;
  font-size:12px;
  color:#333;
  transition:.3s;
}

.inner-travel-page-country-item:hover{
  box-shadow:0 2px 12px rgba(37,99,235,.12);
}

  .inner-travel-page-flag { font-size: 18px; }

.flag-img{
  width:22px;
  height:16px;
  object-fit:cover;
  border-radius:3px;
}
.inner-travel-page-how-get{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:60px;
  align-items:center;
  background:#f8fbff;
  border-radius:30px;
  padding:60px;
}

.inner-travel-page-how-get-img img{
  width:100%;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(37,99,235,.15);
  transition:.4s;
}

.inner-travel-page-how-get-img img:hover{
  transform:translateY(-8px);
}

.inner-travel-page-how-get-content h2{
  font-size:42px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
  color:#0f172a;
}

.inner-travel-page-how-get-content h2 span{
  color:#2563eb;
}

.inner-travel-page-how-get-content p{
  font-size:16px !important;
  line-height:1.8 !important;
  color:#64748b !important;
}

.inner-travel-page-how-get-steps{
  margin-top:35px;
}

.inner-travel-page-get-step{
  display:flex;
  gap:18px;
  margin-bottom:25px;
}

.inner-travel-page-get-step-num{
  width:42px;
  height:42px;
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  border-radius:50%;
  color:#fff;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.inner-travel-page-get-step-text h4{
  font-size:18px;
  margin-bottom:6px;
  color:#0f172a;
}

.inner-travel-page-get-step-text p{
  font-size:14px !important;
  color:#64748b !important;
}

@media(max-width:991px){

  .inner-travel-page-how-get{
    grid-template-columns:1fr;
    padding:30px;
  }

  .inner-travel-page-how-get-content h2{
    font-size:32px;
  }

}
  /* FAQ */
  .inner-travel-page-faq-bg { background: #fff; }
  .inner-travel-page-faq-list { max-width: 720px; margin: 0 auto; }
  .inner-travel-page-faq-item {
    border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 10px; overflow: hidden;
  }
  .inner-travel-page-faq-q {
    padding: 16px 20px; font-size: 14px; font-weight: 600; color: #1a3c6e;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    background: #fff;
  }
  .inner-travel-page-faq-q:hover { background: #f5f8ff; }
  .inner-travel-page-faq-q .arrow { color: #2563eb; font-size: 18px; transition: transform .2s; }
  .inner-travel-page-faq-a { padding: 0 20px 16px; font-size: 13px; color: #555; line-height: 1.7; display: none; }
  .inner-travel-page-faq-item.open .faq-a { display: block; }
  .inner-travel-page-faq-item.open .arrow { transform: rotate(180deg); }

  /* CTA BANNER */
  .inner-travel-page-cta-banner {
    background: linear-gradient(135deg,#2563eb,#0a2a5c); color: #fff;
    padding: 50px 60px; text-align: center;
  }
  .inner-travel-page-cta-banner h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
  .inner-travel-page-cta-banner p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 28px; }




@media (max-width:991px){

  /* Navbar */
  .inner-travel-page-navbar{
    padding:12px 15px;
    flex-direction:column;
    gap:15px;
  }

  .inner-travel-page-navbar-logo-img{
    width:170px;
    height:40px;
  }

  .inner-travel-page-nav-btn{
    width:100%;
  }

  /* Hero */
  .inner-travel-page-hero{
    grid-template-columns:1fr;
    gap:30px;
    padding:40px 20px;
    text-align:center;
  }

  .inner-travel-page-hero-content{
    max-width:100%;
    padding:0;
  }

  .inner-travel-page-hero h1{
    font-size:34px;
  }

  .inner-travel-page-hero p{
    font-size:16px;
    max-width:100%;
  }

  .inner-travel-page-feature-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .inner-travel-page-feature-card{
    width:100%;
  }

  .inner-travel-page-hero-image img{
    height:300px;
  }

  /* How Apply */
  .inner-travel-page-how-steps{
    grid-template-columns:1fr;
  }

  /* Pricing */
  .inner-travel-page-pricing-cards{
    grid-template-columns:1fr;
  }

  .inner-travel-page-price-card.featured{
    transform:none;
  }

  /* What is */
  .inner-travel-page-what-is{
    grid-template-columns:1fr;
    gap:30px;
  }

  .inner-travel-page-what-is-text h2{
    font-size:32px;
  }

  /* Advantages */
  .inner-travel-page-adv-cards{
    grid-template-columns:1fr 1fr;
  }

  /* How get */
  .inner-travel-page-how-get{
    grid-template-columns:1fr;
    padding:25px;
  }

  .inner-travel-page-how-get-content h2{
    font-size:30px;
  }

  /* CTA */
  .inner-travel-page-cta-banner{
    padding:40px 20px;
  }
}

@media (max-width:576px){

  .inner-travel-page-section{
    padding:60px 20px;
  }

  .inner-travel-page-section-title,
  .inner-travel-page-section-title-adv{
    font-size:28px;
  }

  .inner-travel-page-hero h1{
    font-size:28px;
  }

  .inner-travel-page-hero p{
    font-size:15px;
  }

  .inner-travel-page-feature-card{
    padding:20px;
  }

  .inner-travel-page-price-amount{
    font-size:42px;
  }

  .inner-travel-page-what-is-text h2{
    font-size:26px;
  }

  .inner-travel-page-how-get-content h2{
    font-size:26px;
  }

  .inner-travel-page-need-inner h2{
    font-size:26px;
  }

  .inner-travel-page-adv-cards{
    grid-template-columns:1fr;
  }

  .inner-travel-page-countries-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

  .inner-travel-page-nav-btn,
  .inner-travel-page-btn-primary,
  .inner-travel-page-price-btn{
    width:100%;
  }
}

/* about page  */



    .container{
    max-width:1100px;
    margin:auto;
}
.about-us-about-page{
    padding-top: 7rem !important;
    padding:70px 20px;
}

.about-us-page-title{
    text-align:center;
    font-size:52px;
    color:#2448b8;
    font-weight:700;
    margin-bottom:30px;
}

.about-us-about-page hr{
    border:none;
    height:1px;
    background:#ddd;
    margin-bottom:60px;
}

.about-us-section{
    margin-bottom:60px;
}

.about-us-section h2{
    font-size:40px;
    margin-bottom:25px;
    color:#1d2d50;
    font-weight:600;
}

.about-us-section p{
    font-size:15px;
    line-height:1.9;
    color:#596275;
    margin-bottom:20px;
}

.about-us-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.about-us-info-box{
    background:#fff;
    border:1px solid #e4e7eb;
    border-radius:8px;
    padding:22px;
}

.about-us-info-box span{
    display:block;
    font-weight:600;
    margin-bottom:10px;
    color:#2c3e50;
}

.about-us-info-box p{
    margin:0;
    color:#596275;
    font-size:18px;
}

.about-us-legal-box{
    background:#fff8e7;
    border:1px solid #f0c85a;
    border-radius:10px;
    padding:30px;
    margin-bottom:70px;
}

.about-us-legal-box h3{
    color:#a15b00;
    margin-bottom:15px;
    font-size:30px;
}

.about-us-legal-box p{
    line-height:1.8;
    color:#8a5a20;
    font-size:18px;
}

.about-us-section.mission p{
    font-size:20px;
}

@media(max-width:768px){

    .about-us-page-title{
        font-size:30px;
    }

    .about-us-section h2{
        font-size:25px;
    }

    .about-us-section p{
        font-size:12px;
    }

    .about-us-info-grid{
        grid-template-columns:1fr;
    }

    .about-us-legal-box h3{
        font-size:24px;
    }

    .about-us-legal-box p{
        font-size:16px;
    }
}




/* application css start  */

/* Unified arrival application */
.application-flow{padding:135px 0 72px;background:linear-gradient(180deg,#f4f8ff 0,#fff 500px);color:#18233a}.application-flow__heading{max-width:700px;margin:0 auto 34px;text-align:center}.application-flow__eyebrow{display:inline-block;padding:6px 12px;border-radius:20px;background:#e7efff;color:#2450c8;font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.application-flow h1{margin:12px 0 8px;font-size:clamp(28px,4vw,42px);font-weight:800}.application-flow__heading p,.application-panel__intro p{margin:0;color:#64748b}.application-progress{max-width:850px;margin:0 auto 28px;display:flex;align-items:center;justify-content:center}.application-progress__step{display:flex;align-items:center;gap:10px;color:#94a3b8;white-space:nowrap}.application-progress__step>span{display:grid;place-items:center;width:34px;height:34px;border:2px solid #d6deea;border-radius:50%;font-weight:800}.application-progress__step strong,.application-progress__step small{display:block}.application-progress__step strong{font-size:14px}.application-progress__step small{font-size:11px}.application-progress__line{width:90px;height:2px;margin:0 14px;background:#d6deea}.application-progress__step.is-active,.application-progress__step.is-complete{color:#2450ff}.application-progress__step.is-active>span,.application-progress__step.is-complete>span{border-color:#2450ff;background:#2450ff;color:#fff}.application-progress__step.is-complete+ .application-progress__line{background:#2450ff}.application-panel{max-width:950px;margin:auto;padding:32px;border:1px solid #e5ebf5;border-radius:20px;background:#fff;box-shadow:0 15px 45px rgba(26,59,109,.08)}.application-panel__intro{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid #edf1f7}.application-panel__intro h2{margin:0 0 6px;font-size:24px;font-weight:750}.application-panel__count{padding:7px 10px;border-radius:20px;background:#edf4ff;color:#2450c8;font-size:13px;font-weight:700}.traveller-card{margin-bottom:18px;padding:24px;border:1px solid #e0e8f2;border-radius:16px;background:#fcfdff}.traveller-card__header{display:flex;align-items:start;justify-content:space-between;margin-bottom:20px}.traveller-card__number{font-size:17px;font-weight:800}.traveller-card__header p{margin:3px 0 0;color:#789;font-size:13px}.traveller-remove,.review-edit{padding:7px 12px;border:1px solid #f0b9bd;border-radius:8px;background:#fff5f5;color:#bd3342;font-weight:700;font-size:13px}.traveller-remove:disabled{border-color:#dde4ec;color:#a8b1bd;background:#f8fafc;cursor:not-allowed}.application-flow label{display:block;margin-bottom:7px;color:#344054;font-size:14px;font-weight:700}.application-flow label em{color:#df3646;font-style:normal}.application-flow .form-control,.application-flow .form-select{min-height:50px;border-color:#d7e0ec;border-radius:10px}.application-flow .form-control:focus,.application-flow .form-select:focus{border-color:#2450ff;box-shadow:0 0 0 4px rgba(36,80,255,.12)}.add-traveller{display:inline-flex;align-items:center;gap:9px;padding:12px 16px;border:1px dashed #2450ff;border-radius:10px;background:#f6f8ff;color:#2450d0;font-weight:800}.add-traveller span{font-size:22px;line-height:14px}.application-help{margin:18px 0 0;color:#718096;font-size:13px}.travel-details-grid{padding:6px 0}.application-navigation{max-width:950px;margin:24px auto 0;display:flex;align-items:center;justify-content:space-between}.application-navigation__hint{color:#718096;font-size:14px;font-weight:700}.application-button{min-width:145px;padding:14px 20px;border-radius:10px;font-weight:800}.application-button--primary{border:0;background:#2450ff;color:#fff;box-shadow:0 8px 18px rgba(36,80,255,.25)}.application-button--secondary{border:1px solid #d8e0ea;background:#fff;color:#3b4a61}.application-review{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.application-review>div{padding:18px;border-radius:12px;background:#f7f9fc}.application-review span,.application-review strong{display:block}.application-review span{margin-bottom:7px;color:#718096;font-size:12px;font-weight:800;text-transform:uppercase}.application-review strong{color:#25344d;font-size:14px;line-height:1.7}.application-consent{display:flex!important;gap:10px;align-items:flex-start;margin-top:24px!important;padding:15px;border-radius:10px;background:#fff8e8;font-weight:500!important}.application-consent input{width:18px;height:18px;flex:none;margin-top:1px}
@media(max-width:767px){.application-flow{padding:104px 0 45px}.application-progress{justify-content:space-between}.application-progress__step{flex-direction:column;gap:5px;text-align:center}.application-progress__step small{display:none}.application-progress__line{flex:1;width:auto;margin:0 7px}.application-panel{padding:20px 15px}.application-panel__intro{display:block}.application-panel__count{display:inline-block;margin-top:12px}.application-review{grid-template-columns:1fr}.application-navigation{gap:10px}.application-button{min-width:0;padding:13px 12px}.application-navigation__hint{font-size:12px}.traveller-card{padding:18px 14px}}


.travel-form-card{
    background:#fff;
    border-radius:12px;
    padding:35px;
    box-shadow:0 0 10px rgba(0,0,0,.05);
}

.travel-form-card label{
    font-weight:500;
    margin-bottom:10px;
    display:block;
    color:#1f2937;
}

.travel-form-card .form-control,
.travel-form-card .form-select{
    height:58px;
    border-radius:8px;
    border:1px solid #d8dde6;
}



.gender-btn{
    border:1px solid #ddd;
    height:64px;
    border-radius:14px;
    background:#fff;
}

.active-btn{
    background:linear-gradient(90deg,#1f73d8,#42a5f5);
    color:#fff;
    border:none;
}

.add-traveler-btn{
    background:#2450ff;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:6px;
    margin-top:10px;
}

.form-navigation{
    margin-top:50px;
    display:flex;
    justify-content:space-between;
}

.nav-btn{
    min-width:120px;
    height:56px;
}

.travel-stepper{
    position:sticky;
    top:100px;
    display:flex;
    flex-direction:column;
    gap:35px;
    width:220px;
}

.travel-step{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    position:relative;
    color:#777;
    font-size:18px;
}

.step-number{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    background:#d9dde5;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:500;
    position:relative;
    z-index:2;
}

.travel-step.active:not(:last-child)::after{
    background:#2450ff;
}

.travel-step:not(:last-child)::after{
    content:'';
    position:absolute;
    right:17px;
    top:38px;
    width:2px;
    height:35px;
    background:#d9dde5;
}

.travel-step.active::after{
    background:#2450ff;
}
.travel-step.active{
    color:#2450ff;
    font-weight:600;
}

.travel-step.active .step-number{
    background:#2450ff;
    color:#fff;
}

.travel-step.active span:first-child{
    color:#2450ff;
}
.travel-form-wrapper{
    padding-top: 140px;
}
@media(max-width:991px){

    .travel-stepper{
        flex-direction:row;
        justify-content:center;
        padding-left:0;
        margin-bottom:30px;
        gap:20px;
    }

    .travel-step{
        flex-direction:column;
        text-align:center;
        font-size:14px;
    }

    .travel-form-card{
        padding:20px;
    }
}

@media(max-width:576px){

    .travel-form-card{
        padding:15px;
    }

    .add-traveler-btn{
        width:100%;
    }

    .form-navigation{
        gap:15px;
    }

    .nav-btn{
        flex:1;
    }
}
@media (max-width: 991px){

    /* Stepper top me aa jayega */
    .travel-stepper{
        width:100%;
        position:static;
        flex-direction:row;
        justify-content:center;
        align-items:center;
        gap:15px;
        margin-bottom:25px;
    }

    .travel-step{
        flex-direction:column-reverse;
        justify-content:center;
        text-align:center;
        font-size:13px;
        gap:8px;
    }

    .travel-step:not(:last-child)::after{
        display:none;
    }

    .travel-form-card{
        padding:25px;
    }
}

@media (max-width: 767px){

    .travel-form-card{
        padding:20px 15px;
    }

    .travel-form-card label{
        font-size:14px;
    }

    .travel-form-card .form-control,
    .travel-form-card .form-select{
        height:50px;
        font-size:14px;
    }

    .gender-btn{
        height:52px;
    }

    .add-traveler-btn{
        width:100%;
        margin-bottom:15px;
    }

    .form-navigation{
        flex-direction:column;
        gap:12px;
    }

    .nav-btn{
        width:100%;
        min-width:100%;
    }
}

@media (max-width: 575px){

    .travel-step{
        font-size:11px;
    }

    .step-number{
        width:30px;
        height:30px;
        min-width:30px;
        font-size:13px;
    }

    .travel-form-wrapper{
        padding:20px 0 !important;
        padding-top: 8px;
    }

    .container{
        padding-left:12px;
        padding-right:12px;
    }
}



/* contact us css  */





    .contact-page-card{
    background:#fff;
    border-radius:24px;
    padding:45px;
    border-top:5px solid #2450ff;
    box-shadow:
    0 10px 40px rgba(0,0,0,.06),
    0 2px 10px rgba(36,80,255,.08);
}
.contact-page-icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:16px;
    background:linear-gradient(135deg,#2450ff,#4ea4ff);
    color:#fff;
    font-size:22px;

    display:flex;
    align-items:center;
    justify-content:center;
}
.contact-page-trust-bar{
    margin-top:20px;
    background:#fff;
    border-radius:14px;
    padding:18px 25px;
    display:flex;
    justify-content:center;
    gap:35px;
    box-shadow:0 4px 20px rgba(0,0,0,.04);
}

.contact-page-trust-bar i{
    color:#2450ff;
    margin-right:8px;
}
.contact-page-card ::placeholder{
    color:#94a3b8;
}
.contact-page-header{
    margin-bottom:10px;
}

.contact-page-header p{
    max-width:650px;
}
.contact-page-card ::placeholder{
    color:#94a3b8;
}
.contact-page-verification-box{
    transition:.3s;
}

.contact-page-verification-box:hover{
    border-color:#2450ff;
    box-shadow:0 8px 25px rgba(36,80,255,.08);
}
.contact-page-wrapper{
    padding-top: 7rem !important;
    background:
    linear-gradient(
        180deg,
        #f7f9fc 0%,
        #eef4ff 100%
    );
}

.contact-page-card .form-control,
.contact-page-card .form-select{
    height:58px;
    border:1px solid #d9e1ec;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    transition:.3s;
    box-shadow:none;
}
.contact-page-card .form-control:focus,
.contact-page-card .form-select:focus{
    border-color:#2450ff;
    box-shadow:0 0 0 4px rgba(36,80,255,.12);
}
.contact-page-card label{
    font-size:15px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:10px;
}

.contact-page-header{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.contact-page-icon{
    display:flex;
    align-items:center;
    justify-content:center;
}


.contact-page-header h2{
    font-size:34px;
    font-weight:700;
}
.contact-page-header p{
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}
.contact-page-section-title{
    font-size:14px;
    font-weight:700;
    color:#1e2a44;
    margin:30px 0 20px;
}

.contact-page-badge{
    background:#dce7ff;
    color:#2450ff;
    padding:4px 10px;
    border-radius:5px;
    font-size:12px;
    margin-left:10px;
}

.contact-page-verification-box{
    border:1px solid #d6dde8;
    border-radius:12px;
    padding:25px;
}

.contact-page-verification-head{
    display:flex;
    gap:15px;
}
.contact-page-verification-head h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.contact-page-verification-head p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:0;
}

.contact-page-security-icon{
    width:40px;
    height:40px;
    background:#1f2937;
    color:#fff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-page-textarea{
    min-height:180px;
    resize:none;
}

.contact-page-counter{
    text-align:right;
    margin-top:10px;
    color:#6b7280;
    font-size:14px;
}

.contact-page-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.contact-page-note{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:#475569;
}

.contact-page-submit-btn{
    min-width:220px;
    min-height:64px;
    font-size:17px;
    box-shadow:0 10px 25px rgba(36,80,255,.18);
}

.contact-page-trust-bar{
    margin-top:0;
    border-top:1px solid #dde5ef;
}
.contact-page-submit-btn{
    background:linear-gradient(
    135deg,
    #2450ff,
    #3b82f6
    );
    color:#fff;
    border:none;
    padding:16px 32px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.contact-page-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(36,80,255,.25);
}
.contact-page-section-title{
    position:relative;
    padding-bottom:12px;
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:.5px;
}

.contact-page-section-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#2450ff;
    border-radius:50px;
}
.contact-page-verification-box{
    border:2px solid #dce6ff;
    background:#f8fbff;
    border-radius:18px;
    padding:28px;
}

.contact-page-security-icon{
    width:50px;
    height:50px;
    border-radius:12px;
    background:#1e293b;
}
.contact-page-wrapper .container{
    max-width:900px;
}
.contact-page-textarea{
    min-height:220px;
    border-radius:14px;
    padding:18px;
}
@media(max-width:768px){

    .contact-page-card{
        padding:20px;
    }

    .contact-page-header{
        flex-direction:column;
    }

    .contact-page-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .contact-page-submit-btn{
        width:100%;
    }

    .contact-page-trust-bar{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}


/* policy page css  */


    .privacy-policy-page{
        padding-top: 7rem !important;
    background:#f8f9fb;
    font-family:'Quicksand',sans-serif;
}

.privacy-policy-content{
    max-width:1200px;
    margin:auto;
        margin-top: 20px;
}

.privacy-policy-content h1{
    font-size:35px;
    font-weight:700;
    margin-bottom:40px;
    color:#111827;
}

.privacy-policy-section{
    margin-bottom:40px;
}

.privacy-policy-section h2{
    font-size:30px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.privacy-policy-section p,
.privacy-policy-section li{
    font-size:17px;
    line-height:1.9;
    color:#374151;
}

.privacy-policy-section ul{
    padding-left:25px;
}

.privacy-policy-content hr{
    margin:50px 0;
    border-color:#d9dde6;
}

.privacy-company-info h3{
    font-size:25px;
    font-weight:700;
    margin-bottom:25px;
}

.privacy-company-info p{
    font-size:20px;
    margin-bottom:15px;
    color:#374151;
}

@media(max-width:768px){

    .privacy-policy-content h1{
        font-size:32px;
    }

    .privacy-policy-section h2{
        font-size:24px;
    }

    .privacy-policy-section p,
    .privacy-policy-section li,
    .privacy-company-info p{
        font-size:16px;
    }

    .privacy-company-info h3{
        font-size:24px;
    }
}

    .page-shell {
        background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
        min-height: 100vh;
        padding: 60px 0 90px;
    }

    .status-hero {
        max-width: 760px;
        margin: 70px auto 28px;
        text-align: center;
    }

    .status-hero h1 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 700;
        color: var(--text);
        margin-bottom: 12px;
    }

    .status-hero p {
        color: var(--muted);
        font-size: 1.02rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .search-card {
        max-width: 600px;
        margin: 0 auto;
        background: #fff;
        border-radius: 24px;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--border);
        padding: 28px;
        animation: fadeInUp 0.65s ease both;
    }

    .search-card .form-control {
        border-radius: 14px;
        border: 1px solid var(--border);
        padding: 14px 16px;
        font-size: 0.98rem;
        transition: all 0.25s ease;
    }

    .search-card .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(103, 199, 232, 0.15);
    }

    .btn-track {
        background: var(--primary);
        border: none;
        color: var(--primary-text);
        padding: 13px 22px;
        border-radius: 999px;
        font-weight: 700;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn-track:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(103, 199, 232, 0.35);
        background: var(--primary-strong);
        color: var(--primary-text);
    }

    .result-shell {
        margin-top: 24px;
        animation: fadeInUp 0.6s ease both;
    }

    .result-card {
        background: #fff;
        border-radius: 24px;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--border);
        padding: 28px;
    }

    .badge-status {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.95rem;
    }

    .badge-status.pending {
        background: var(--primary-soft);
        color: var(--primary-text);
    }

    .badge-status.approved {
        background: var(--primary-soft);
        color: var(--primary-text);
    }

    .badge-status.rejected {
        background: #fef2f2;
        color: #b91c1c;
    }

    .timeline-step {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        color: var(--muted);
    }

    .timeline-step .icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f3f4f6;
        color: #64748b;
        font-size: 0.95rem;
    }

    .timeline-step.active .icon {
        background: var(--primary-soft);
        color: var(--primary);
    }

    .timeline-step.success .icon {
        background: #ecfdf5;
        color: var(--success);
    }

    .timeline-step.failed .icon {
        background: #fef2f2;
        color: var(--danger);
    }

    .timeline-step strong {
        color: var(--text);
        font-weight: 600;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 18px;
    }

    .info-card {
        background: #f9fbfd;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 14px 16px;
    }

    .info-card .label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--muted);
        margin-bottom: 6px;
    }

    .info-card .value {
        font-weight: 700;
        color: var(--text);
        font-size: 0.98rem;
    }

    .empty-state {
        text-align: center;
        padding: 24px 8px 12px;
    }

    .empty-state .icon-box {
        width: 72px;
        height: 72px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--primary-soft);
        color: var(--primary);
        font-size: 2rem;
    }

    .help-card {
        max-width: 600px;
        margin: 22px auto 0;
        background: #fff;
        padding: 20px 22px;
        border-radius: 18px;
        border: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
    }

    .btn-link {
        color: var(--primary-text);
        font-weight: 600;
        text-decoration: none;
    }

    .btn-link:hover {
        color: var(--primary-text);
        text-decoration: underline;
    }

    .btn-download {
        border-radius: 999px;
        background: var(--primary);
        color: var(--primary-text);
        padding: 12px 18px;
        font-weight: 700;
        border: none;
    }

    .btn-download:hover {
        color: var(--primary-text);
        background: var(--primary-strong);
        box-shadow: 0 10px 20px rgba(103, 199, 232, 0.2);
    }

    .loading-box {
        padding: 28px 0;
        text-align: center;
        color: var(--muted);
    }

    .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid rgba(103, 199, 232, 0.15);
        border-top-color: var(--primary);
        border-radius: 50%;
        margin: 0 auto 12px;
        animation: spin 0.8s linear infinite;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

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

    @media (max-width: 576px) {
        .page-shell { padding: 36px 0 70px; }
        .search-card, .result-card, .help-card { padding: 20px; border-radius: 18px; }
        .info-grid { grid-template-columns: 1fr; }
        .btn-track { width: 100%; }
    }
