:root {
  --primary: #2789D4;
  --primary-dark: #1565C0;
  --primary-light: #F5F8FC;
  --navy: #0A1A33;
  --navy-medium: #0B2C5F;
  --navy-light: #0B3D91;
  --slate-text: #64748B;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --radius-card: 18px;
  --radius-btn: 50px;
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--primary-light);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: var(--primary); color: #fff; }


.mt-5{ margin-top:5px !important; }
.mt-10{ margin-top:10px !important; }
.mt-15{ margin-top:15px !important; }
.mt-20{ margin-top:20px !important; }
.mt-25{ margin-top:25px !important; }
.mt-30{ margin-top:30px !important; }
.mt-35{ margin-top:35px !important; }
.mt-40{ margin-top:40px !important; }
.mt-45{ margin-top:45px !important; }
.mt-50{ margin-top:50px !important; }
.mt-60{ margin-top:60px !important; }
.mt-70{ margin-top:70px !important; }
.mt-80{ margin-top:80px !important; }
.mt-90{ margin-top:90px !important; }
.mt-100{ margin-top:100px !important; }


.mb-5{ margin-bottom:5px !important; }
.mb-10{ margin-bottom:10px !important; }
.mb-15{ margin-bottom:15px !important; }
.mb-20{ margin-bottom:20px !important; }
.mb-25{ margin-bottom:25px !important; }
.mb-30{ margin-bottom:30px !important; }
.mb-35{ margin-bottom:35px !important; }
.mb-40{ margin-bottom:40px !important; }
.mb-45{ margin-bottom:45px !important; }
.mb-50{ margin-bottom:50px !important; }
.mb-60{ margin-bottom:60px !important; }
.mb-70{ margin-bottom:70px !important; }
.mb-80{ margin-bottom:80px !important; }
.mb-90{ margin-bottom:90px !important; }
.mb-100{ margin-bottom:100px !important; }

.pt-5{ padding-top:5px !important; }
.pt-10{ padding-top:10px !important; }
.pt-15{ padding-top:15px !important; }
.pt-20{ padding-top:20px !important; }
.pt-25{ padding-top:25px !important; }
.pt-30{ padding-top:30px !important; }
.pt-35{ padding-top:35px !important; }
.pt-40{ padding-top:40px !important; }
.pt-45{ padding-top:45px !important; }
.pt-50{ padding-top:50px !important; }
.pt-60{ padding-top:60px !important; }
.pt-70{ padding-top:70px !important; }
.pt-80{ padding-top:80px !important; }
.pt-90{ padding-top:90px !important; }
.pt-100{ padding-top:100px !important; }


.pb-5{ padding-bottom:5px !important; }
.pb-10{ padding-bottom:10px !important; }
.pb-15{ padding-bottom:15px !important; }
.pb-20{ padding-bottom:20px !important; }
.pb-25{ padding-bottom:25px !important; }
.pb-30{ padding-bottom:30px !important; }
.pb-35{ padding-bottom:35px !important; }
.pb-40{ padding-bottom:40px !important; }
.pb-45{ padding-bottom:45px !important; }
.pb-50{ padding-bottom:50px !important; }
.pb-60{ padding-bottom:60px !important; }
.pb-70{ padding-bottom:70px !important; }
.pb-80{ padding-bottom:80px !important; }
.pb-90{ padding-bottom:90px !important; }
.pb-100{ padding-bottom:100px !important; }


.container-fluid, .container {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    --bs-gutter-x: unset;
    --bs-gutter-y: unset;
    padding: 0 15px;
}

@media (min-width: 640px) {
    .container-fluid, .container {
        max-width:640px
    }
}

@media (min-width: 768px) {
    .container-fluid, .container {
        max-width:768px
    }
}

@media (min-width: 1024px) {
    .container-fluid, .container {
        max-width:1024px
    }
}

@media (min-width: 1280px) {
    .container-fluid, .container {
        max-width:1280px
    }
}

@media (min-width: 1536px) {
    .container-fluid, .container {
        max-width:1536px
    }
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-4xl {
    max-width: 56rem;
}


.icon { width: 20px; height: 20px; }
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 40px; height: 40px; }

/* ---------------------------------------------------------------------
   Scroll progress bar
   --------------------------------------------------------------------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--navy-light));
  transform-origin: 0% 0%;
  transform: scaleX(0);
  z-index: 100;
}

/* ---------------------------------------------------------------------
   Navbar
   --------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  z-index: 50;
  transition: box-shadow .3s ease;
}
.navbar.is-scrolled { box-shadow: 0 10px 25px rgba(0,0,0,.1); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {height: 60px;width: auto;object-fit: contain;transition: transform .3s;}
.brand:hover .brand-logo { transform: scale(1.05); }

.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  transition: color .3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active { font-weight: 700; }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--primary);
  border-radius: 4px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border: 1px solid #EAF1FB;
  padding: 8px;
  margin-top: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all .2s ease;
  z-index: 60;
}
.nav-dropdown-panel-narrow { width: 260px; }
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all .2s;
}
.nav-dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
.nav-dropdown-icon { color: var(--primary); flex-shrink: 0; }

.nav-cta { display: none; }
.btn-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 25px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2582ca, #0d418b);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  /* box-shadow: 0 8px 22px rgba(11,94,215,.22); */
  transition: all .35s ease;
  border: 1px solid transparent;
}
.btn-portal:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11,94,215,.35); filter: brightness(1.1); }
.btn-portal-block { width: 100%; justify-content: center; }

.nav-toggle { color: var(--navy); padding: 8px; }
.nav-toggle:hover { color: var(--primary); }

.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 320px;
  background: #fff;
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .35s ease;
  border-left: 1px solid #f1f5f9;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-inner { display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 24px; }
.nav-drawer-top { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #f1f5f9; padding-bottom: 16px; margin-bottom: 24px; }
.nav-drawer-logo { height: 48px; width: auto; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 16px; overflow-y: auto; max-height: calc(100vh - 220px); }
.nav-drawer-link { font-size: 16px; font-weight: 600; color: var(--navy); padding: 8px 0; }
.nav-drawer-link:hover { color: var(--primary); }
.nav-drawer-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
}
.nav-drawer-accordion-btn .icon-xs { transition: transform .2s; }
.nav-drawer-accordion-btn.is-open .icon-xs { transform: rotate(180deg); }
.nav-drawer-accordion {
  padding-left: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  border-left: 2px solid var(--primary-light);
}
.nav-drawer-accordion.is-open { display: flex; }
.nav-drawer-sublink { font-size: 14px; font-weight: 500; color: var(--slate-text); padding: 4px 0; }
.nav-drawer-sublink:hover { color: var(--primary); }
.nav-drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,26,51,.4); z-index: 998;
  opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.nav-drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------------
   Rate ticker
   --------------------------------------------------------------------- */
.rate-ticker {
  position: fixed;
  top: 90px; left: 0; width: 100%; height: 40px;
  background: var(--navy);
  color: #fff;
  z-index: 40;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.rate-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scrollTicker 28s linear infinite;
}
.rate-ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 6px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
}
.rate-ticker-rate { color: #9FD3FF; font-weight: 700; margin-left: 10px; }
.rate-ticker-transit { color: #94a3b8; font-size: 11px; margin-left: 8px; }
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-main { flex-grow: 1; padding-top: 130px; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: all .2s ease;
  cursor: pointer;
}
.btn:active { transform: scale(.98); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-medium); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-gradient { background: linear-gradient(to right, var(--primary), var(--navy-light)); color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.btn-gradient:hover { opacity: .95; box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--primary-light), #fff);
  padding: 96px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.eyebrow {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(39,137,212,.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow-light { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.hero-heading {
  font-weight: 900;
  line-height: 0.95;
  max-width: 620px;
  letter-spacing: -0.03em;
  color: #424241;
  font-size: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.hero-heading-gradient {
  background: linear-gradient(135deg, rgb(0, 81, 253) 0%, rgb(117, 115, 212) 100%) text;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {font-size: 17px;color: var(--slate-text);max-width: 560px;line-height: 1.7;}
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }
.hero-badge {
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  border: 1px solid #f1f5f9;
}
.hero-actions { display: flex; align-items: center; gap: 16px; padding-top: 16px; flex-wrap: wrap; }

.hero-widget { position: relative; }
.tracking-card {
  background: #fff;
  border: 1px solid #EAF1FB;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}
.tracking-card-glow {
  position: absolute; top: 0; right: 0; width: 96px; height: 96px;
  background: rgba(39,137,212,.05); border-radius: 999px; filter: blur(30px);
}
.tracking-card-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tracking-card-sub { font-size: 14px; color: var(--slate-text); margin-bottom: 24px; }

.tracking-form {
    display: grid;
    gap: 16px;
}
.tracking-input-wrap { position: relative; }
.tracking-input {
  width: 100%;
  padding: 14px 48px 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  transition: all .2s;
}
.tracking-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(39,137,212,.2); }
.tracking-input-btn {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.tracking-input-btn:hover { background: var(--primary-dark); }

.form-error {
  display: flex; align-items: center; gap: 8px;
  color: var(--danger); font-size: 13px;
  background: #FEF2F2; border: 1px solid #FEE2E2;
  padding: 10px 14px; border-radius: 10px;
}

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}
.tracking-step { display: flex; flex-direction: column; align-items: center; }
.tracking-step-icon {
  width: 32px; height: 32px; border-radius: 999px;
  background: #f1f5f9; color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.tracking-step.is-active .tracking-step-icon { background: rgba(39,137,212,.1); color: var(--primary); }
.tracking-step-label { font-size: 9px; font-weight: 600; line-height: 1.2; color: #94a3b8; }
.tracking-step.is-active .tracking-step-label { color: var(--navy); }

/* ---------------------------------------------------------------------
   Sections (generic)
   --------------------------------------------------------------------- */
.section { padding: 80px 0; background: #fff; }
.section-alt { background: linear-gradient(to bottom, #fff, var(--primary-light)); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; display: flex; flex-direction: column; gap: 12px; }
.section-header-narrow { max-width: 500px; }
.section-heading {font-size: 28px;font-weight: 600;color: var(--navy);}
.section-text {font-size: 15px;color: #656565;line-height: 1.75;font-weight: 300;}
.section-text-center { font-size: 15px; color: var(--slate-text); }

.split-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.split-cta { padding-top: 8px; }
.split-image-wrap { display: flex; align-items: center; justify-content: center; }
.split-image-frame {
    position: relative;
    padding: 16px;
    background: rgba(39, 137, 212, .05);
    border-radius: 30px;
    border: 1px solid rgba(39, 137, 212, .1);
    max-width: 460px;
    width: 100%;
}
.split-image { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 4px 14px rgba(0,0,0,.1); object-fit: cover; }

/* Offer cards */
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid #EAF1FB;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.offer-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--navy-light));
  color: #fff;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.offer-icon {
  width: 48px; height: 48px; border-radius: 16px;
  background: rgba(39,137,212,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all .3s;
}
.offer-card:hover .offer-icon { background: rgba(255,255,255,.2); color: #fff; }
.offer-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; transition: color .3s; }
.offer-card:hover .offer-title { color: #fff; }
.offer-desc { font-size: 14px; color: var(--slate-text); transition: color .3s; }
.offer-card:hover .offer-desc { color: #e2e8f0; }
.offer-link { padding-top: 24px; display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--primary); transition: color .3s; }
.offer-card:hover .offer-link { color: #fff; }

/* How it works */
.steps-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 32px; }
.steps-line { display: none; }
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--primary-light); border: 1px solid #EAF1FB;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; box-shadow: 0 4px 10px rgba(0,0,0,.06);
  transition: all .3s;
}
.step-item:hover .step-icon { background: var(--primary); color: #fff; }
.step-label { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--slate-text); max-width: 220px; }

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary), var(--navy-light));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent);
}
.cta-inner { text-align: center; max-width: 640px; display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; margin: 0 auto; }
.cta-heading { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.cta-text {font-size: 17px;color: #f1f5f9;opacity: .9;line-height: 1.7;}
.cta-actions { padding-top: 8px; }
.cta-section .btn-secondary {/* background: #0B3D91; */border-color: transparent;}
.cta-section .btn-secondary:hover {/* background: #1565C0; */}

/* ---------------------------------------------------------------------
   Tracking page
   --------------------------------------------------------------------- */
.tracking-hero {
  background: linear-gradient(to bottom right, var(--navy), var(--navy-light), #2789D4);
  padding: 64px 0 80px;
}
.tracking-hero-inner { text-align: center; }
.tracking-hero-title { font-size: 34px; font-weight: 800; color: #fff; margin: 20px 0 16px; }
.tracking-hero-sub { color: rgba(255,255,255,.7); font-size: 16px; max-width: 520px; margin: 0 auto; }

.tracking-wrap { max-width: 760px; margin-top: -32px; padding-bottom: 80px; }
.tracking-search-panel {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border: 1px solid #f1f5f9;
  padding: 24px;
  margin-bottom: 32px;
}
.tracking-search-form { display: flex; flex-direction: column; gap: 12px; }
.tracking-input-wrap-lg { position: relative; flex: 1; }
.tracking-input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--slate-text); display: flex; }
.tracking-input-lg { padding: 16px 16px 16px 48px; border-radius: 12px; font-size: 14px; }
.btn-track { padding: 16px 32px; white-space: nowrap; }
.tracking-hint { font-size: 12px; color: var(--slate-text); margin-top: 16px; }

.tracking-empty { text-align: center; padding: 64px 0; }
.tracking-empty-icon {
  width: 80px; height: 80px; border-radius: 999px;
  background: rgba(39,137,212,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.tracking-empty-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.tracking-empty-text { font-size: 14px; color: var(--slate-text); max-width: 340px; margin: 0 auto; }

.result-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.result-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-text); margin-bottom: 4px; }
.result-summary { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.result-summary-main { display: flex; align-items: center; gap: 16px; }
.result-status-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(39,137,212,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.result-status-icon.is-exception { background: #FEF2F2; color: var(--danger); }
.result-tracking-number { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: .01em; }

.status-pill {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  background: rgba(39,137,212,.1); color: var(--primary);
}
.status-pill.status-delivered { background: rgba(16,185,129,.12); color: var(--success); }
.status-pill.status-exception { background: rgba(239,68,68,.12); color: var(--danger); }
.status-pill.status-out_for_delivery { background: rgba(245,158,11,.12); color: var(--warning); }

.result-route {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--primary-light); border-radius: 14px; padding: 20px;
}
.result-route-point-right { text-align: right; }
.result-route-city { font-size: 16px; font-weight: 700; color: var(--navy); }
.result-route-country { font-size: 13px; color: var(--slate-text); }
.result-route-line { color: var(--primary); padding: 0 16px; flex-shrink: 0; }

.result-meta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.result-meta-value { font-size: 14px; font-weight: 600; color: var(--navy); }

.result-parties { display: grid; grid-template-columns: 1fr; gap: 20px; }
.result-party { background: #fff; border: 1px solid #f1f5f9; border-radius: 14px; padding: 18px; }
.result-party-name { font-size: 15px; font-weight: 700; color: var(--navy); margin: 2px 0 6px; }
.result-party-detail { font-size: 13px; color: var(--slate-text); line-height: 1.6; }

.result-timeline-label { margin-bottom: 16px; }
.timeline { position: relative; display: flex; flex-direction: column; gap: 24px; padding-left: 4px; }
.timeline-item { position: relative; display: flex; gap: 16px; padding-left: 4px; }
.timeline-item::before {
  content: '';
  position: absolute; left: 15px; top: 32px; bottom: -24px;
  width: 2px; background: #e2e8f0;
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0;
  background: rgba(39,137,212,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.timeline-item.is-latest .timeline-dot { background: var(--primary); color: #fff; }
.timeline-item.is-exception .timeline-dot { background: #FEF2F2; color: var(--danger); }
.timeline-content { flex: 1; padding-bottom: 4px; }
.timeline-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; }
.timeline-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.timeline-time { font-size: 12px; color: var(--slate-text); white-space: nowrap; }
.timeline-location { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--primary); margin-top: 4px; }
.timeline-remarks { font-size: 13px; color: var(--slate-text); margin-top: 4px; line-height: 1.5; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #fff; padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-panel {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  padding: 36px;
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
}
.footer-grid {
    display: grid;
    grid-template-columns: 30% 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand-col { display: flex; flex-direction: column; gap: 24px; }
.footer-brand {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .1);
    padding: 8px 12px;
    width: 130px;
    height: 130px;
}
.footer-logo { height: 60px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: #cbd5e1; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; border-radius: 12px; background: rgba(255,255,255,.05); padding: 12px; }
.footer-contact-link:hover { background: rgba(255,255,255,.1); color: var(--primary); }
.footer-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-title { font-weight: 600; color: #fff; margin-bottom: 2px; }
.footer-contact-text { color: #cbd5e1; line-height: 1.6; }
.footer-col-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; color: #fff; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: #94a3b8; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright { font-size: 13px; color: #64748b; }
.footer-social {display: flex;align-items: center;gap: 16px;justify-content: center;}
.footer-social-btn {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05);
  color: #cbd5e1; display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.footer-social-btn:hover { transform: scale(1.1); color: var(--primary); border-color: rgba(39,137,212,.4); background: rgba(39,137,212,.1); }
.footer-legal {display: flex;flex-wrap: wrap;align-items: center;gap: 16px;font-size: 13px;color: #64748b;justify-content: right;}
.footer-legal a:hover { color: var(--primary); }

/* ---------------------------------------------------------------------
   Simple entrance animations (CSS-only substitute for framer-motion)
   --------------------------------------------------------------------- */
.fade-in-up, .fade-in-left, .fade-in-right {
  animation: fadeUp .6s ease both;
}
.fade-in-left { animation-name: fadeLeft; }
.fade-in-right { animation-name: fadeRight; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ---------------------------------------------------------------------
   Responsive breakpoints
   --------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: flex; align-items: center; gap: 16px; }
  .nav-toggle { display: none; }
  .nav-drawer, .nav-drawer-overlay { display: none; }

  .hero-heading {font-size: 55px;}
  .hero-grid { grid-template-columns: 7fr 5fr; }
  .split-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-line { display: block; position: absolute; top: 32px; left: 15%; right: 15%; height: 2px; background: #f1f5f9; z-index: 0; }
  .result-parties { grid-template-columns: 1fr 1fr; }
  .section-heading { font-size: 36px; }
  .cta-heading { font-size: 48px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-heading { font-size: 42px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .result-meta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 640px) {
  .tracking-form, .tracking-search-form { flex-direction: row; }
  .tracking-form .tracking-input-wrap { flex: 1; }
  .btn-track { width: auto; }
}

@media (max-width: 639px) {
  .hero-heading { white-space: normal; }
  .result-meta-grid { grid-template-columns: 1fr 1fr; }
}


a.btn-portal.outline {
    color: #2582ca;
    border-color: #2582ca;
    background: unset;
}

a.btn-portal.outline:hover {
    color: #fff;
    transform: unset;
    box-shadow: unset;
    background: #2582ca;
}






/* ====================================================================== */
/*============================= KRISHNA CODE ==============================*/
/* ====================================================================== */


/*company style here*/
.customerPortal{
  transition-timing-function: cubic-bezier(0, 0, .2, 1);
  transition-duration: .35s;
  transition-property: all;
  padding-left: 28px;
  padding-right: 28px;
  --tw-shadow: 0 8px 22px #0b5ed738;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  letter-spacing: .2px;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(to right, #0057B8, #0B7DFF);
  height: 46px;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  gap: .5rem;
}
.customerPortal svg{width: 18px;height: 18px;}
.customerPortal:hover{
  --tw-shadow: 0 14px 30px #0b5ed759;
  --tw-shadow-colored: 0 14px 30px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 14px 30px #0b5ed759;
  --tw-brightness: brightness(1.1);
  --tw-translate-y: -2px;
  transform: translate(0, -2px) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}
.bg-navy {
    --tw-bg-opacity: 1;
    background-color: rgb(10 26 51 / var(--tw-bg-opacity, 1));
    height: 350px;
    overflow: hidden;
    position: relative;
}
.bgNavyImg{
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  user-select: none;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: .45;
}
.from-navy-trans{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to top, #0a1a33 , transparent);
  --tw-gradient-from: #0a1a33 var(--tw-gradient-from-position);
  --tw-gradient-to: #0a1a3300 var(--tw-gradient-to-position);
  --tw-gradient-stops: #0a1a33, transparent;
}
.bgContentHead{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bgContentHead h1{
  font-size: 3rem;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(255 255 255);
  font-weight: 800;
}
.whoWeSec{
  padding:5rem 0;
  --tw-text-opacity: 1;
  color: rgb(255 255 255);
  background: #fff;
}
.whoManiBox{
  /* display: grid; */
  align-items: center;
  gap: 3rem;
  /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  display: flex;
}
.whoManiBox .whoImgLeft{
  border-radius: 24px;overflow: hidden;
  border:1px rgb(243 244 246/1);
  --tw-border-opacity: 1;
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}
.text-navy {
  --tw-text-opacity: 1;
  color: rgb(10 26 51 /  1);
}
.font-extrabold {font-weight: 800;}
.titleBox{  margin-bottom: 2.5rem;}
.whoContentRight h2{
  font-size: 3rem;
  line-height: 1;

}
.borderBox{width: 5rem;height: .25rem;margin-top: 1rem; --tw-bg-opacity: 1;background-color: rgb(39 137 212 / 1);}
.rounded-full {border-radius: 9999px;}
.text-3xl { font-size: 1.875rem!important;line-height:2.25rem!important;font-weight: 700;}
.from-primary { 
  --tw-gradient-from: #2789d4;
  --tw-gradient-to: #2789d400 var(--tw-gradient-to-position);
  --tw-gradient-stops: #2789d4, #0b3d91;
}
.text-transparent{color: #0000;}
.bg-gradient-to-r{background-image: linear-gradient(to right, #2789d4, #0b3d91);}
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.whoContentRight p.text-slateText { --tw-text-opacity: 1; color: rgb(100 116 139 / 1);margin-top:1.5rem;}
.counterBox{
  margin-top:1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 1rem;
  border-color: rgb(243 244 246 / 1);
  border-top-width: 1px;
  gap: 1.5rem;
}
.counterBox h3{
  font-size: 2.25rem!important;
  line-height: 2.5rem!important;
  --tw-text-opacity: 1;
  color: rgb(39 137 212 / 1)!important;
  font-weight: 800;
  align-items: center;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.counterBox p{
  margin-top: calc(.25rem * calc(1 - 0));
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em;
    font-size: .75rem;
    line-height: 1rem;  
}

.misVisSec{
  background-image: linear-gradient(to bottom, #fff, #f5f8fc);
  --tw-gradient-from: #fff;
  --tw-gradient-to: #fff0;
  --tw-gradient-stops: #fff, #f5f8fc;
  --tw-gradient-to: #f5f8fc;
  padding:5rem 0;
}
.miViBox{
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  border-radius: 18px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(234 241 251 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 2rem;
  align-items: flex-start;
  text-align: left;
  --tw-shadow: 0 8px 30px #0000000a;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 8px 30px #0000000a;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.miViBox:hover{
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

.miViImg{width: 5rem;height: 5rem;border-radius:25px;-o-object-fit: cover;object-fit: cover;}
.miViImg img {
    border-radius: 1rem;
    aspect-ratio: 3 / 3;
}
.minContent {
    width: calc(100% - 5rem);
}
.minContent h3{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(10 26 51 / 1);
}
.minContent p{
  font-size: .875rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 /  1);
  margin-top:.75rem;
}
.pTB{padding:5rem 0;}
.coreValuesSec{
  background:#fff;
}
.title{margin-bottom: 4rem;}
.title h2{
  --tw-text-opacity: 1;
  color: rgb(10 26 51 / 1);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.title p{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 /  1);
  margin-top:.75rem;
}
.ValuesMain{
  display:flex;
  gap: 1.5rem;
}
.innBox{
  /* transition-duration: 0.5s;
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); */
  transition:all 0.5s ease;
  --tw-shadow: 0 8px 30px #0000000a;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 8px 30px #0000000a;
  padding: 1.5rem;
  border-radius: 18px;
  height:100%;
}
.innBox:hover{
  background-image: linear-gradient(to bottom right, #2789d4 , #0b3d91);
  transform:translateY(-4px);
}
.coreIcon{
  width: 3rem;
  height: 3rem;
  background-color: rgba(39, 137, 212, 0.1);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: rgb(39 137 212 / 1);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}
.innBox:hover .coreIcon{
  color: rgb(255 255 255 / 1);
  background-color: rgba(255, 255, 255, 0.2);
}
.innBox h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(10 26 51 / 1);
}
.innBox:hover h3,.innBox:hover p{
  color: rgb(255 255 255 / 1);
}
.innBox p{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / 1);
}
.whyChooseSec{

}
.bgColor{
  background-color: rgb(245 248 252 /  1);
}
.whyChooBox{
  display:flex;
  gap: 1rem;
}
.whyChooseSec .row{
  row-gap:2rem;
}
.whyIcon {
  border-color: rgb(243 244 246 / 1);
  border-radius: 0.75rem;
    background-color: rgb(255 255 255 / 1);
    color: rgb(39 137 212 / 1);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 #0000000d;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whyIcon svg{
        width: 1.25rem;
        height: 1.25rem;
  }
.whyContRight{

}
.whyContRight h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: rgb(10 26 51 / 1);
}
.whyContRight p{
  color: rgb(100 116 139 / 1);
  line-height: 1.625;
  font-size: 0.875rem;
  margin-top:.25rem;
}
.bgWhite{background:#fff;}
.title2{margin-bottom: 4rem;}
.title2 h2{
  font-size: 3rem;
  line-height: 1;
  color: rgb(10 26 51 / 1);
  font-weight: 700;
  margin-bottom: 1rem;
}
.title2 p{
  color: rgb(100 116 139 / 1);
  font-size: 1rem;
  line-height: 1.5rem;
}
.corPartBox{
  background-color: rgb(245 248 252 /1);
  border:1px solid rgb(234 241 251 / 1);
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 9rem;
      transition-property: all;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: .3s;

}
.corPartBox:hover{
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
  --tw-translate-y: -.25rem;
  transform: translate(0, -.25rem) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
  border-color: #2789d433;
  background-color: rgb(255 255 255 / 1);
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  box-shadow:0 0 #0000, 0 0 #0000, 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;

}
.corPartBox img {
    max-width: 100%;
}

.servicesHead{
  background: linear-gradient(135deg, rgb(10, 26, 51) 0%, rgb(11, 61, 145) 60%, rgb(39, 137, 212) 100%);
  height: 520px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align:center;
}
.servicesHeadImg{
  opacity: .1;
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.servicesHeadContent{
  max-width: 56rem;
  position: relative;
  z-index: 1;
}
.serHeadSmBox{
  display: inline-block;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border:1px solid #fff3;
  background-color: #ffffff1a;
  padding:.375rem 1rem;
  font-size: .75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgb(39 137 212 / 1);
}
.servicesHead h1{
    font-size: 3rem;
    line-height: 1;
    color: rgb(255 255 255 / 1);
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.breadcrumb{
  display:flex;
  color:#fff;
  justify-content:center;
  align-content:center;
  gap: .5rem;
  margin: 0;
  font-size: .875rem;
  line-height: 1.25rem;
}
.breadcrumb a{
  color: #fff9;
}
.breadcrumb a:hover{
  color: #ffffffe6;
}
.breadcrumb svg{width: 1rem;height: 1rem;margin-top: 2px;color: #fff9;}
.breadcrumb  span{color: #ffffffe6;}


.serMainBox{max-width: 72rem;margin:0 auto;padding-left: 1rem;padding-right: 1rem;}
.serviContent {padding-right: 10px; }
.serviContent p{color: rgb(100 116 139 / 1);font-size: 1.125rem;line-height: 1.625;margin-bottom: 1.25rem;}

.serviBtn{
  --tw-gradient-to: #0b3d91;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  font-weight: 600;
  padding:.875rem 2rem;
  --tw-gradient-from: #2789d4;
  --tw-gradient-stops:#2789d4, #0b3d91;
  background-image: linear-gradient(to right, #2789d4, #0b3d91);
  border-radius: 9999px;
  gap: .5rem;
  align-items: center;
  display: inline-flex;
  margin-top: 15px;
}
.serviBtn:hover{
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  --tw-shadow-colored: 0 10px 15px -3px, 0 4px 6px -4px;
  box-shadow:0 0 #0000, 0 0 #0000, 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  opacity: .9;
  --tw-scale-x: 1.05!important;
  --tw-scale-y: 1.05!important;
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.05) scaleY(var(1.05))!important;
  transition-duration: .3s;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.serviimg{
  overflow: hidden;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(243 244 246 / 1);
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
}
.serviimg img{
  -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 320px;
}
.whatWeOfferSec .row{
  row-gap: 1.5rem;
}

.title3{margin-bottom: 3rem;}
.title3 h2{
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: rgb(10 26 51 / 1);
  font-weight: 700;
  margin-bottom: 1rem;
}
.title3 p{
  color: rgb(100 116 139 / 1);
  max-width: 42rem;
}
.offerMainBox {
  --tw-shadow: 0 1px 2px 0 #0000000d;
  box-shadow: 0 0 #0000,0 0 #0000,0 1px 2px 0 #0000000d;
  padding: 1.5rem;
  background-color: rgb(255 255 255 / 1);
  border-color: rgb(243 244 246 / 1);
  border-radius: 1rem;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;  
  height:100%;
}
.offerMainBox:hover{
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a!important;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a!important;
  border-color: #2789d433;
  --tw-translate-y: -.25rem;
  transform: translate(0, -.25rem) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}
.offerIcon{
  background-color: #2789d41a;
  color: rgb(39 137 212 / 1);
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
  transition-duration: .3s;
}
.offerMainBox:hover .offerIcon{
  background-color: #2789d433;
  transition: 0.5s ease-in-out all;
}
.offerIcon svg{
  width: 1.5rem;
  height: 1.5rem;
  color: rgb(39 137 212 / 1);
}
.offerMainBox h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(10 26 51 /  1);
  font-weight: 700;
  margin-bottom: .5rem;
  transition: 0.5s ease-in-out all;
}
.offerMainBox p{
  font-size: .875rem;
  line-height: 1.625;
  color: rgb(100 116 139 / 1);
}
.whatWeMain{
  max-width: 72rem;
  margin:0 auto;
}

.keyBenefitsSec .row{row-gap: 1.5rem;}
.keyBeMainBox{
  border: 1px solid rgb(243, 244, 246, 1);
  padding: 1.25rem;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
  display: flex;
  gap: 12px;
  border-radius: 1rem;
}
.keyBeMainBox:hover{
  background-color: #2789d40d;
  border-color: #2789d433;
}
.keyBeMainBox .offerIcon{
  display:flex;
  justify-content:center;
  align-items:center;
  width: 2.5rem;
  height: 2.5rem;  
  flex-shrink: 0;
  border-radius: .5rem;
  background-image: linear-gradient(to bottom right, #2789d433 , #0a1a331a);
  --tw-gradient-from: #2789d433;
  --tw-gradient-to: #2789d400;
  --tw-gradient-stops: #2789d433, #0a1a331a;
}
.keyBeMainBox .offerIcon svg{
  color: rgb(39 137 212 / 1);
  width: 1.25rem;
  height: 1.25rem;
}
.keyBeMainBox h4{
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: rgb(10 26 51 / 1);
  margin-bottom: .25rem;
}
.keyBeMainBox p{
  color: rgb(100 116 139 / 1);
  font-size: .875rem;
  line-height: 1.625;
}


.howItWorks{}
.howWorksBox{
  display:flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.howWorkIcon {
  position: relative;
  --tw-gradient-to: #0b3d91;
  z-index: 10;
  display: flex;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, #2789d4 , #0b3d91);
  --tw-gradient-from: #2789d4;
  --tw-gradient-stops: #2789d4,#2789d4;
  --tw-gradient-to: #0b3d91;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: rgb(255, 255, 255, 1);
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px #2789d44d, 0 4px 6px -4px #2789d44d;
  --tw-shadow-color: #2789d44d;
  --tw-shadow:0 10px 15px -3px #2789d44d, 0 4px 6px -4px #2789d44d;
}
.howWorksCont{
  border-radius: 1rem;
  flex: 1;
  border-width: 1px;
  border-color: rgb(243, 244, 246, 1);
  background-color: rgb(255, 255, 255, 1);
  padding: 1.25rem;
  --tw-shadow: 0 1px 2px 0 #0000000d;
  --tw-shadow-colored: 0 1px 2px 0;
  box-shadow:0 0 #0000, 0 0 #0000,0 1px 2px 0 #0000000d;
}
.howWorksCont:hover{
  --tw-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --tw-shadow-colored: 0 4px 6px -1px transparent, 0 2px 4px -2px transparent;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}
.howWorksCont h4{
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: rgb(10 26 51 / 1);
    margin-bottom: .25rem;
}
.howWorksCont p{
  font-size: .875rem;
  line-height: 1.625;
  color: rgb(100 116 139 / 1);
}
.border11{
  background-color: #2789d433;
  display: block;
  width: 1px;
  top: 0;
  left: 2rem;
  bottom: 0;
  position: absolute;
}
.howWorksMain {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}
.howWorksMain .row{
  row-gap:1.5rem;
}
.keyDesMain{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  max-width: 56rem;
  margin: 0 auto;
}
.keyDesMain .locationBox{
  display: inline-flex;
  cursor: default;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  border: 1px solid #2789d433;
  background-color: rgb(245 248 252 / 1);
  padding:.625rem 1.25rem;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: rgb(10 26 51 /  1);
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
}
.keyDesMain .locationBox:hover{
  border-color: rgb(39 137 212 / 1);
  color: rgb(255 255 255 /  1);
  background-color: rgb(39 137 212 / 1);
}
.keyDesMain .locationBox svg{
  width: .875rem;
  height: .875rem;
}
.readyShipCargo{
  --tw-gradient-to: #2789d4;
  background-image: linear-gradient(to right, #0a1a33 , #0b3d91 , #2789d4);
  --tw-gradient-from: #0a1a33;
  --tw-gradient-stops: #0a1a33, #0b3d91, #2789d4;
  --tw-gradient-to: #2789d4;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.readyShipCargo h2{
  color: rgb(255 255 255 / 1);
          font-size: 2.25rem;
        line-height: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
}
.readyShipCargo p{
  color: #ffffffbf;
      font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin:0 auto;
    margin-bottom: 2.5rem;
}
.requestBtn{
  border-radius: 9999px;
  color: rgb(10 26 51 / 1);
  font-weight: 700;
  padding: 1rem 2rem;
  background-color: rgb(255 255 255 / 1);
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
}
.requestBtn:hover{
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  box-shadow:0 0 #0000, 0 0 #0000, 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  color: rgb(255 255 255 / 1);
  background-color: rgb(39 137 212 / 1);
}
.whatsAppBtn{
  border-radius: 9999px;
  background-color: rgb(37 211 102 / 1);
  padding:1rem 2rem;
  font-weight: 700;
  color: rgb(255 255 255 / 1);
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
}
.whatsAppBtn:hover{
  opacity: .9;
  --tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  box-shadow:0 0 #0000, 0 0 #0000, 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
}


/* ====================================================================== */
/*============================= KRISHNA CODE END ==============================*/
/* ====================================================================== */



/* ====================================================================== */
/*============================= LIVE RATES ==============================*/
/* ====================================================================== */

.lr_breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #051124 0%, #0A1A33 50%, #0E2E5C 100%);
  padding: 5rem 0 7rem;
  color: #fff;
}
.lr-hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.1;
  background-image:
    linear-gradient(to right, #0f172a 1px, transparent 1px),
    linear-gradient(to bottom, #0f172a 1px, transparent 1px);
  background-size: 4rem 4rem;
}
.lr-hero-blur { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(80px); }
.lrhero-blur-right { top: -10rem; right: -10rem; background: rgba(39,137,212,0.2); }
.lrhero-blur-left { bottom: -10rem; left: -10rem; background: rgba(59,130,246,0.1); }
.lr-hero-content {position: relative;z-index: 10;margin: 0 auto;text-align: center;}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  color: #bfdbfe;
  font-weight: 500;
  width: fit-content;
  margin: auto;
}
.icon-sparkle { color: #2789D4; width: 0.9rem; height: 0.9rem; }

.lrhero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 0.5rem;
}
.lrhero-subtitle {
  font-size: 1.1rem; color: #cbd5e1; font-weight: 300; line-height: 1.6;
  max-width: 640px; margin: 0 auto;
}

@media (min-width: 768px) { .lrhero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .lrhero-title { font-size: 3.5rem; } }

/* ---------------------------------------------------------------------- */
/* Console / Panel                                                        */
/* ---------------------------------------------------------------------- */
.console-wrap { max-width: 960px; margin-top: -3.5rem; position: relative; z-index: 20; padding-bottom: 6rem; }
.lr_panel {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(2,8,23,0.18);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .lr_panel { padding: 2rem; } }

.fade-up { animation: fadeUp 0.45s ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.field-block { margin-bottom: 2rem; }
.field-block:last-child { margin-bottom: 0; }
.field-label {
  display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #94a3b8; margin-bottom: 0.75rem;
}

/* Service toggle */
.service-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-btn {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: 16px; border: 2px solid #f1f5f9;
  background: #fff; color: #475569; font-weight: 700; cursor: pointer;
  transition: all 0.25s ease; font-family: inherit;
}
.service-btn:hover { border-color: #e2e8f0; background: #f8fafc; }
.service-btn.is-active {
  border-color: #2789D4;
  background: rgba(39,137,212,0.05);
  color: #2789D4;
  box-shadow: 0 4px 14px rgba(39,137,212,0.15);
}
.service-emoji { font-size: 1.5rem; }
.service-text { text-align: left; }
.service-name { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.service-desc { display: block; font-size: 0.68rem; font-weight: 400; color: #64748b; margin-top: 0.15rem; }
.service-ping {
  position: absolute; top: 0.5rem; right: 0.5rem; width: 8px; height: 8px;
  border-radius: 999px; background: #2789D4; display: none;
}
.service-btn.is-active .service-ping { display: block; animation: ping 1.4s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes ping { 75%,100% { transform: scale(2.2); opacity: 0; } }

/* Inputs grid */
.inputs-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-bottom: 2rem; }
@media (min-width: 768px) { .inputs-grid { grid-template-columns: repeat(3, 1fr); } }

.select-wrap, .weight-wrap { position: relative; }
.select-input, .weight-wrap input, .dest-trigger {
  width: 100%; height: 48px; padding: 0 2.5rem 0 1rem;
  border: 1px solid #e2e8f0; border-radius: 12px; background: #fff;
  font-family: inherit; font-weight: 600; color: #334155; font-size: 0.95rem;
  appearance: none; -webkit-appearance: none;
}
.select-input:focus, .weight-wrap input:focus, .dest-trigger:focus {
  outline: none; border-color: #2789D4;
  box-shadow: 0 0 0 3px rgba(39,137,212,0.15);
}
.chevron { position: absolute; right: 0.85rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: #94a3b8; pointer-events: none; transition: transform 0.2s ease; }
.weight-suffix { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 0.7rem; font-weight: 700; color: #94a3b8; }

/* Destination dropdown */
.dest-field { position: relative; }
.dest-trigger {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; 
    position: relative;
}
.dest-trigger[aria-expanded="true"] .chevron { transform: translateY(-50%) rotate(180deg); }
.dest-trigger-inner { display: flex; align-items: center; gap: 0.5rem; overflow: hidden; }
.dest-flag { font-size: 1.1rem; flex-shrink: 0; }
.dest-selected-text { font-weight: 600; color: #334155; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.dest-panel {
  position: absolute; left: 0; right: 0; margin-top: 0.5rem; z-index: 50;
  max-height: 20rem; overflow-y: auto; background: #fff; border-radius: 16px;
  box-shadow: 0 25px 60px rgba(2,8,23,0.25); border: 1px solid #f1f5f9; padding: 0.5rem;
}
.dest-search-row {
  position: sticky; top: 0; background: #fff; display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.5rem 0.65rem; margin-bottom: 0.5rem; border-bottom: 1px solid #f8fafc;
}
.icon-search { color: #94a3b8; width: 1rem; height: 1rem; margin-left: 0.4rem; flex-shrink: 0; }
.dest-search-row input {
  border: none; outline: none; width: 100%; font-size: 0.875rem; color: #334155; height: 2.25rem; font-family: inherit;
}
.dest-list { display: flex; flex-direction: column; gap: 0.15rem; }
.dest-group-label {
  display: block; padding: 0.25rem 0.75rem 0.25rem; margin-top: 0.4rem;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: #94a3b8; background: #f8fafc; border-radius: 6px;
}
.dest-option {
  width: 100%; text-align: left; padding: 0.55rem 0.75rem; border-radius: 8px; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  background: none; border: none; cursor: pointer; color: #475569; font-family: inherit;
}
.dest-option:hover { background: #f8fafc; }
.dest-option.is-selected { background: rgba(39,137,212,0.06); color: #2789D4; font-weight: 700; }
.dest-option-label { display: flex; align-items: center; gap: 0.5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dest-empty { text-align: center; padding: 1.5rem 0; color: #94a3b8; font-size: 0.75rem; font-weight: 500; }

/* Error banner */
.error-banner {
  display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 1.5rem;
  color: #dc2626; background: #fef2f2; border: 1px solid rgba(239,68,68,0.2);
  padding: 1rem; border-radius: 16px; font-size: 0.875rem; line-height: 1.5;
}
.error-title { display: block; font-weight: 600; margin-bottom: 0.15rem; }

/* Action bar */
.action-bar {
  display: flex; flex-direction: column; gap: 1rem; align-items: stretch;
  justify-content: space-between; padding-top: 1rem; border-top: 1px solid #f1f5f9;
}
@media (min-width: 640px) { .action-bar { flex-direction: row; align-items: center; } }
.action-note { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.75rem; color: #64748b; }
.action-note .icon { color: #2789D4; flex-shrink: 0; margin-top: 0.15rem; width: 1.1rem; height: 1.1rem; }
.action-note p { margin: 0; max-width: 28rem; line-height: 1.5; }

.btn-primary {
  height: 48px; padding: 0 2rem; border-radius: 12px; border: none;
  background: #2789D4; color: #fff; font-weight: 700; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  cursor: pointer; box-shadow: 0 4px 14px rgba(39,137,212,0.25); transition: opacity 0.2s ease;
  font-family: inherit; font-size: 0.95rem; width: 100%;
}
@media (min-width: 640px) { .btn-primary { width: auto; } }
.btn-primary:hover { background: #1565C0; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary-sm { height: 44px; padding: 0 1.4rem; font-size: 0.8rem; box-shadow: none; }
.btn-arrow { width: 1rem; height: 1rem; }

.spinner {
  width: 1rem; height: 1rem; border-radius: 999px; border: 2px solid rgba(255,255,255,0.6);
  border-top-color: #fff; animation: spin 0.8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn-ghost {
  height: 44px; padding: 0 1.25rem; border-radius: 12px; background: #f1f5f9; color: #334155;
  font-weight: 700; font-size: 0.8rem; text-decoration: none; display: inline-flex; align-items: center;
  border: 1px solid #e2e8f0; transition: background 0.2s ease;
}
.btn-ghost:hover { background: #e2e8f0; }

/* ---------------------------------------------------------------------- */
/* Results                                                                 */
/* ---------------------------------------------------------------------- */
.results-wrap { margin-top: 3rem; }
.results-summary {
  display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start;
  justify-content: space-between; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .results-summary { flex-direction: row; align-items: center; } }
.results-summary h3 { margin: 0; font-size: 1.25rem; font-weight: 800; color: #0f172a; }
.results-sub { margin: 0.25rem 0 0; font-size: 0.75rem; color: #64748b; }
.results-sub strong { color: #334155; }

.effective-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; background: #f1f5f9; border-radius: 999px;
  padding: 0.35rem 0.85rem; font-size: 0.75rem; font-weight: 600; color: #475569; border: 1px solid #e2e8f0;
}

.results-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .results-grid { grid-template-columns: 1fr 1fr; } }

.result-card {
  background: #fff; border-radius: 20px; box-shadow: 0 10px 25px rgba(2,8,23,0.08);
  border: 1px solid #f1f5f9; display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.result-card:hover { box-shadow: 0 20px 45px rgba(2,8,23,0.14); border-color: rgba(39,137,212,0.2); }
.result-card-body { padding: 1.5rem 1.5rem 1rem; }
.result-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; gap: 0.75rem; flex-direction: row-reverse; }
.result-eyebrow { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
.result-route { font-size: 1.5rem; font-weight: 900; color: #0f172a; display: flex; align-items: center; gap: 0.5rem; margin: 0.25rem 0; letter-spacing: -0.01em; }
.result-route .icon { width: 1rem; height: 1rem; color: #2789D4; }
.result-place { font-size: 0.75rem; font-weight: 500; color: #64748b; margin: 0; }

.service-chip { padding: 0.35rem 0.75rem; border-radius: 12px; font-size: 0.7rem; font-weight: 700; border: 1px solid; white-space: nowrap; }
.service-chip.courier { background: #fffbeb; color: #b45309; border-color: rgba(245,158,11,0.3); }
.service-chip.cargo { background: #eff6ff; color: #1d4ed8; border-color: rgba(37,99,235,0.3); }

.slab-table { background: #f8fafc; border-radius: 14px; padding: 0.75rem; margin-bottom: 1rem; }
.slab-table-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; margin: 0 0 0.5rem; }
.slab-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.25rem; text-align: center; }
.slab-cell { border-radius: 8px; padding: 0.35rem 0.15rem; color: #64748b; }
.slab-cell.is-active { background: #2789D4; color: #fff; font-weight: 700; box-shadow: 0 4px 10px rgba(39,137,212,0.3); transform: scale(1.04); }
.slab-cell-label { display: block; font-size: 0.55rem; text-transform: uppercase; letter-spacing: -0.01em; opacity: 0.8; }
.slab-cell-val { display: block; font-size: 0.72rem; font-weight: 700; margin-top: 0.15rem; }

.estimate-box { background: linear-gradient(135deg, rgba(39,137,212,0.03), rgba(59,130,246,0.01)); border: 1px solid #f1f5f9; border-radius: 14px; padding: 1rem; }
.estimate-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.estimate-label { font-size: 0.75rem; font-weight: 600; color: #64748b; }
.estimate-transit { font-size: 0.62rem; color: #94a3b8; display: flex; align-items: center; gap: 0.25rem; }
.estimate-amount { display: flex; align-items: baseline; gap: 0.35rem; }
.estimate-amount .value { font-size: 1.75rem; font-weight: 900; color: #2789D4; letter-spacing: -0.02em; }
.estimate-amount .currency { font-size: 0.7rem; font-weight: 700; color: #94a3b8; }
.estimate-note { margin-top: 0.75rem; display: flex; gap: 0.35rem; align-items: flex-start; font-size: 0.65rem; color: #64748b; background: #fff; padding: 0.5rem; border-radius: 10px; border: 1px solid #f1f5f9; }
.estimate-note .icon { color: #2789D4; width: 0.85rem; height: 0.85rem; margin-top: 0.1rem; flex-shrink: 0; }

.adhoc-box { background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.3); border-radius: 14px; padding: 1rem; }
.adhoc-title { display: flex; align-items: center; gap: 0.5rem; color: #92400e; font-weight: 700; margin-bottom: 0.25rem; font-size: 0.85rem; }
.adhoc-desc { font-size: 0.7rem; color: rgba(146,64,14,0.8); line-height: 1.5; margin: 0 0 0.75rem; }
.adhoc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.adhoc-actions a { height: 36px; display: flex; align-items: center; justify-content: center; gap: 0.35rem; border-radius: 8px; font-size: 0.7rem; font-weight: 700; text-decoration: none; }
.adhoc-whatsapp { background: #25D366; color: #fff; }
.adhoc-whatsapp:hover { background: #20ba59; }
.adhoc-book { background: #2789D4; color: #fff; }
.adhoc-book:hover { background: #1565C0; }

.result-card-footer {
  padding: 1rem 1.5rem; background: #f8fafc; border-top: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.result-updated { font-size: 0.62rem; color: #94a3b8; font-weight: 600; display: flex; align-items: center; gap: 0.25rem; }
.result-book-btn {
  padding: 0.5rem 1rem; background: #fff; border: 1px solid #e2e8f0; color: #334155;
  font-size: 0.7rem; font-weight: 700; border-radius: 8px; text-decoration: none;
  display: flex; align-items: center; gap: 0.35rem; transition: all 0.2s ease;
}
.result-book-btn:hover { background: #2789D4; color: #fff; border-color: #2789D4; }

/* Custom desk */
.custom-desk {
  margin-top: 3rem; text-align: center; background: #fff; border-radius: 28px; padding: 2rem;
  border: 1px solid #f1f5f9; box-shadow: 0 20px 50px rgba(2,8,23,0.1);
  display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between;
  max-width: 60rem; margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .custom-desk { flex-direction: row; text-align: left; } }
.custom-desk-copy h4 { display: flex; align-items: center; gap: 0.5rem; font-size: 1.05rem; font-weight: 800; color: #0f172a; margin: 0 0 0.35rem; }
.custom-desk-copy h4 .icon { color: #2789D4; }
.custom-desk-copy p { margin: 0; color: #64748b; font-size: 0.75rem; line-height: 1.6; max-width: 36rem; }
.custom-desk-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Feature cards (initial empty state)                                    */
/* ---------------------------------------------------------------------- */
.feature-cards { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feature-cards { grid-template-columns: 1fr 1fr 1fr; } }

.feature-card {
  background: #fff; border-radius: 20px; padding: 1.5rem; border: 1px solid #f1f5f9;
  box-shadow: 0 4px 14px rgba(2,8,23,0.04); transition: box-shadow 0.2s ease;
}
.feature-card:hover { box-shadow: 0 10px 25px rgba(2,8,23,0.08); }
.feature-icon { width: 2.5rem; height: 2.5rem; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-icon-blue { background: #eff6ff; color: #2789D4; }
.feature-icon-amber { background: #fffbeb; color: #d97706; }
.feature-icon-emerald { background: #ecfdf5; color: #059669; }
.feature-card h4 { margin: 0 0 0.35rem; font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.feature-card p { margin: 0; font-size: 0.75rem; color: #64748b; line-height: 1.6; }


.text-primary {
    color: #2789d4 !important;
}

.offerMainBox.industrial_sl {
    border: 1px solid #eee;
    transition: 0.5s ease-in-out all;
}

.offerMainBox.industrial_sl:hover {
    background: linear-gradient(45deg, #2789d4, #0b3d91);
    transition: 0.5s ease-in-out all;
}

.offerMainBox.industrial_sl:hover .offerIcon {
    background-color: #e6f4ff;
    transition: 0.5s ease-in-out all;
}

.offerMainBox.industrial_sl:hover h3, .offerMainBox.industrial_sl:hover p {
    color: #fff;
    transition: 0.5s ease-in-out all;
}




/*=====================================================================*/
/*====================  CONTACT US ==============================*/
/*=====================================================================*/

/* ============================================
     4. CONTACT BREADCRUMB SECTION
     ============================================ */
  .cnt_contact_breadcrumb {
    background: linear-gradient(to bottom right, #0A1A33, #0B3D91, #2789D4);
    padding: 64px 0;
    text-align: center;
  }

  .cnt_contact_breadcrumb-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2789D4;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .cnt_contact_breadcrumb-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
  }

  .cnt_contact_breadcrumb-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .cnt_contact_breadcrumb { padding: 96px 0; }
    .cnt_contact_breadcrumb-title { font-size: 48px; }
  }

  /* ============================================
     5. PAGE WRAPPER (pulls content up over contact breadcrumb)
     ============================================ */
  .cnt_page-content {
    margin-top: -32px; /* -mt-8 */
  }

  /* ============================================
     6. CONTACT INFO CARDS
     ============================================ */
  .cnt_cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  @media (min-width: 640px) {
    .cnt_cards-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 1024px) {
    .cnt_cards-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .cnt_info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }

  .cnt_info-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 137, 212, 0.2);
    transform: translateY(-4px);
  }

  .cnt_info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(39, 137, 212, 0.1);
  }

  .cnt_info-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2789D4;
  }

  .cnt_info-card-icon.cnt_icon-green {
    background: rgba(37, 211, 102, 0.1);
  }

  .cnt_info-card-icon.cnt_icon-green svg {
    stroke: #25D366;
  }

  .cnt_info-card h3 {
    font-weight: 700;
    color: #0A1A33;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .cnt_info-card p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
  }

  .cnt_info-card-cta {
    margin-top: auto;
    padding-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2789D4;
    transition: color 0.2s ease;
  }

  .cnt_info-card-cta:hover {
    color: #1565C0;
  }

  .cnt_info-card-cta.cnt_cta-green {
    color: #25D366;
  }

  .cnt_info-card-cta.cnt_cta-green:hover {
    color: #1da851;
  }

  .cnt_info-card-cta svg {
    width: 16px;
    height: 16px;
  }

  /* ============================================
     7. TWO-COLUMN LAYOUT (Form + Offices)
     ============================================ */
  .cnt_main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  @media (min-width: 1024px) {
    .cnt_main-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============================================
     8. CONTACT FORM CARD
     ============================================ */
  .cnt_form-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    padding: 28px;
  }

  .cnt_form-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1A33;
    margin-bottom: 24px;
  }

  .cnt_form-card form {
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .cnt_form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 640px) {
    .cnt_form-row { grid-template-columns: repeat(2, 1fr); }
  }

  .cnt_form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0A1A33;
    margin-bottom: 8px;
  }

  .cnt_form-field input,
  .cnt_form-field textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    color: #0A1A33;
    font-size: 14px;
    font-family: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .cnt_form-field input::placeholder,
  .cnt_form-field textarea::placeholder {
    color: rgba(100, 116, 139, 0.5);
  }

  .cnt_form-field input:focus,
  .cnt_form-field textarea:focus {
    outline: none;
    border-color: #2789D4;
    box-shadow: 0 0 0 3px rgba(39, 137, 212, 0.3);
  }

  .cnt_form-field textarea {
    resize: none;
  }

  .cnt_status-message {
    font-size: 14px;
  }

  .cnt_status-message.cnt_success {
    color: #059669;
  }

  .cnt_status-message.cnt_error {
    color: #dc2626;
  }

  .cnt_submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, #2789D4, #0B3D91);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  .cnt_submit-btn:hover {
    opacity: 0.9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
  }

  .cnt_submit-btn svg {
    width: 20px;
    height: 20px;
  }

  /* ============================================
     9. OFFICE LOCATIONS
     ============================================ */
  .cnt_offices-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cnt_offices-column h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1A33;
  }

  .cnt_office-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .cnt_office-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 137, 212, 0.2);
  }

  .cnt_office-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .cnt_office-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(39, 137, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cnt_office-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2789D4;
  }

  .cnt_office-details h3 {
    font-weight: 700;
    color: #0A1A33;
    font-size: 18px;
    margin-bottom: 4px;
  }

  .cnt_office-details .cnt_office-address {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 12px;
    white-space: pre-line;
  }

  .cnt_office-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cnt_office-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2789D4;
    font-weight: 600;
    transition: color 0.2s ease;
  }

  .cnt_office-contacts a:hover {
    color: #1565C0;
  }

  .cnt_office-contacts svg {
    width: 16px;
    height: 16px;
  }

  /* ============================================
     10. QUICK BOOKING CTA
     ============================================ */
  .cnt_cta-banner {
    background: linear-gradient(to right, #0A1A33, #0B3D91);
    border-radius: 16px;
    padding: 24px;
    color: #ffffff;
  }

  .cnt_cta-banner h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .cnt_cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
  }

  .cnt_cta-banner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2789D4;
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
  }

  .cnt_cta-banner a:hover {
    opacity: 0.9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .cnt_cta-banner a svg {
    width: 16px;
    height: 16px;
  } 

/*=====================================================================*/
/*====================  CONTACT US END ==============================*/
/*=====================================================================*/

  

/*=====================================================================*/
/*====================  BOOKING REQUEST FORM ==============================*/
/*=====================================================================*/

/* ============================================
     5. FORM CARD
     ============================================ */
  .br_form-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    padding: 24px;
  }

  @media (min-width: 768px) {
    .br_form-card { padding: 40px; }
  }

  /* ============================================
     6. FORM SECTIONS
     ============================================ */
  .br_form-section {
    margin-bottom: 32px;
  }

  .br_section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .br_section-number {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: #2789D4;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .br_section-heading h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A1A33;
  }

  .br_field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 640px) {
    .br_field-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .br_col-span-2 {
    grid-column: 1 / -1;
  }

  .br_divider {
    border-top: 1px solid #f3f4f6;
    margin: 24px 0;
  }

  /* ============================================
     7. FORM FIELDS (matches shared Input component)
     ============================================ */
  .br_field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .br_field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #64748B;
  }

  .br_field-input-wrap {
    position: relative;
    width: 100%;
  }

  .br_field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: rgba(100, 116, 139, 0.6);
    pointer-events: none;
  }

  .br_field input,
  .br_field select,
  .br_field textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-family: inherit;
    color: #0A1A33;
    background: #ffffff;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .br_field input::placeholder,
  .br_field textarea::placeholder {
    color: #94a3b8;
  }

  .br_field input:focus,
  .br_field select:focus,
  .br_field textarea:focus {
    outline: none;
    border-color: #2789D4;
    box-shadow: 0 0 0 3px rgba(39, 137, 212, 0.2);
  }

  .br_field textarea {
    resize: vertical;
  }

  .br_field select {
    appearance: none;
    cursor: pointer;
    background-image: none;
  }

  .br_field-has-icon input,
  .br_field-has-icon select,
  .br_field-has-icon textarea {
    padding-left: 40px;
  }

  .br_field-error {
    font-size: 12px;
    font-weight: 600;
    color: #EF4444;
  }

  .br_field.br_has-error input,
  .br_field.br_has-error select,
  .br_field.br_has-error textarea {
    border-color: #EF4444;
  }

  .br_field.br_has-error input:focus,
  .br_field.br_has-error select:focus,
  .br_field.br_has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
  }

  /* ============================================
     8. SUBMIT SECTION
     ============================================ */
  .br_submit-section {
    border-top: 1px solid #f3f4f6;
    padding-top: 24px;
  }

  .br_submit-hint {
    font-size: 14px;
    color: #64748B;
    text-align: center;
    margin-bottom: 16px;
  }

  .br_submit-error {
    font-size: 14px;
    color: #dc2626;
    text-align: center;
    margin-bottom: 16px;
  }

  .br_submit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 640px) {
    .br_submit-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .br_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  .br_btn:hover {
    opacity: 0.9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
  }

  .br_btn svg {
    width: 20px;
    height: 20px;
  }

  .br_btn-whatsapp {
    background: #25D366;
  }

  .br_btn-email {
    background: linear-gradient(to right, #2789D4, #0B3D91);
  }

  .br_submit-footnote {
    font-size: 12px;
    color: #64748B;
    text-align: center;
    margin-top: 16px;
  }

  /* ============================================
     9. QUICK CONTACT INFO CARDS
     ============================================ */
  .br_contact-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  @media (min-width: 640px) {
    .br_contact-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .br_contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .br_contact-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 137, 212, 0.2);
  }

  .br_contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(39, 137, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .br_contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: #2789D4;
  }

  .br_contact-card p.br_contact-title {
    font-weight: 700;
    color: #0A1A33;
    font-size: 14px;
  }

  .br_contact-card p.br_contact-desc {
    color: #64748B;
    font-size: 12px;
    margin-top: 2px;
  }

  /* ============================================
     10. SUCCESS TOAST (example markup, hidden by default)
     ============================================ */
  .br_toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    max-width: 448px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .br_toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .br_toast-icon svg {
    width: 20px;
    height: 20px;
    stroke: #10B981;
  }

  .br_toast-title {
    font-size: 14px;
    font-weight: 700;
    color: #0A1A33;
  }

  .br_toast-message {
    font-size: 12px;
    color: #64748B;
    margin-top: 4px;
    line-height: 1.5;
  }

  .br_toast-dismiss {
    background: none;
    border: none;
    color: rgba(100, 116, 139, 0.5);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .br_toast-dismiss:hover {
    color: #0A1A33;
  }

/*=====================================================================*/
/*====================  BOOKING REQUEST END ==============================*/
/*=====================================================================*/


/*=====================================================================*/
/*==================== FREIGHT CALCULATOR ==============================*/
/*=====================================================================*/

.fc_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .fc_grid {
    grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
  }
}

/* ---- Shared card ---- */
.fc_card {
  background-color: #ffffff;
  border-radius: 16px; /* rounded-2xl */
  border: 1px solid #F3F4F6;
  padding: 24px;
}

@media (min-width: 768px) {
  .fc_card {
    padding: 32px;
  }
}

.fc_calc_card {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* shadow-xl */
}

.fc_card_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.fc_icon_box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(39, 137, 212, 0.1); /* primary/10 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc_icon_box svg {
  width: 20px;
  height: 20px;
  color: #2789D4;
}

.fc_icon_success {
  background-color: rgba(16, 185, 129, 0.1); /* success/10 */
}

.fc_icon_success svg {
  color: #10B981;
}

.fc_card_title {
  font-size: 20px;
  font-weight: 700;
  color: #0A1A33;
}

/* ---- Service type toggle ---- */
.fc_toggle_group {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding: 4px;
  background-color: #F5F8FC;
  border-radius: 12px;
  width: fit-content;
}

.fc_toggle_btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #64748B; /* slateText */
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.fc_toggle_btn:hover {
  color: #0A1A33;
}

.fc_toggle_btn.fc_active {
  background-color: #2789D4;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.fc_toggle_btn.fc_active:hover {
  color: #ffffff;
}

/* ---- Form fields ---- */
.fc_form_col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fc_dim_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.fc_field {
  display: flex;
  flex-direction: column;
}

.fc_label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0A1A33;
  margin-bottom: 8px;
}

.fc_input {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: #0A1A33;
  background-color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.fc_input:focus {
  border-color: #2789D4;
  box-shadow: 0 0 0 3px rgba(39, 137, 212, 0.3);
}

.fc_input.fc_input_error {
  border-color: #F87171;
  background-color: #FEF2F2;
}

.fc_error {
  color: #EF4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  align-items: center;
  gap: 4px;
}

.fc_error.fc_show {
  display: flex;
}

.fc_error svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ---- Formula info box ---- */
.fc_formula_box {
  background-color: rgba(39, 137, 212, 0.05); /* primary/5 */
  border: 1px solid rgba(39, 137, 212, 0.2);  /* primary/20 */
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  color: #64748B;
}

.fc_formula_label {
  font-weight: 600;
  color: #0A1A33;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fc_formula_code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
}

.fc_formula_primary {
  color: #2789D4;
}

.fc_formula_navy {
  color: #0A1A33;
}

/* ---- Calculate button ---- */
.fc_calc_btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background-image: linear-gradient(to right, #2789D4, #0B3D91);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.fc_calc_btn svg {
  width: 20px;
  height: 20px;
}

.fc_calc_btn:hover {
  opacity: 0.9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

/* ==========================================================================
   RESULTS PANEL
   ========================================================================== */
.fc_results_wrap {
  width: 100%;
}

/* ---- Empty state ---- */
.fc_empty_state {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fc_empty_icon_circle {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background-color: rgba(39, 137, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.fc_empty_icon_circle svg {
  width: 40px;
  height: 40px;
  color: #2789D4;
}

.fc_empty_title {
  font-size: 18px;
  font-weight: 700;
  color: #0A1A33;
  margin-bottom: 12px;
}

.fc_empty_text {
  color: #64748B;
  font-size: 14px;
  max-width: 20rem;
  margin-bottom: 32px;
}

.fc_howitworks_box {
  width: 100%;
  background-color: #F5F8FC;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}

.fc_howitworks_label {
  font-size: 12px;
  font-weight: 700;
  color: #0A1A33;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.fc_step_row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fc_step_row:last-child {
  margin-bottom: 0;
}

.fc_step_num {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background-color: rgba(39, 137, 212, 0.1);
  color: #2789D4;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc_step_text {
  font-size: 14px;
  color: #0A1A33;
}

/* ---- Result state ---- */
.fc_result_card {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.fc_summary {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 24px;
}

.fc_summary strong {
  font-weight: 600;
  color: #0A1A33;
}

.fc_weight_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.fc_weight_card {
  border-radius: 12px;
  padding: 16px;
  border: 2px solid #F3F4F6;
}

.fc_weight_card.fc_weight_active {
  border-color: #2789D4;
  background-color: rgba(39, 137, 212, 0.05);
}

.fc_weight_label {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.fc_weight_value {
  font-size: 30px;
  font-weight: 800;
  color: #0A1A33;
}

.fc_weight_unit {
  font-size: 14px;
  color: #64748B;
}

.fc_chargeable_badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  background-color: rgba(39, 137, 212, 0.1);
  color: #2789D4;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
}

.fc_breakdown_box,
.fc_formula_used_box {
  background-color: #F5F8FC;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 14px;
}

.fc_breakdown_title,
.fc_formula_used_label {
  font-weight: 600;
  color: #0A1A33;
  margin-bottom: 8px;
}

.fc_formula_used_label {
  margin-bottom: 4px;
}

.fc_breakdown_row {
  display: flex;
  justify-content: space-between;
  color: #64748B;
}

.fc_breakdown_row strong {
  font-weight: 600;
  color: #0A1A33;
}

.fc_formula_used_text {
  color: #64748B;
}

.fc_chargeable_box {
  background-image: linear-gradient(to right, #2789D4, #0B3D91);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.fc_chargeable_label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.fc_chargeable_value {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
}

.fc_chargeable_kg {
  font-size: 20px;
}

.fc_chargeable_note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 4px;
}

.fc_info_box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #64748B;
  background-color: #F9FAFB;
  border-radius: 12px;
  padding: 12px;
}

.fc_info_box svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #64748B;
}

.fc_cta_btn {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #2789D4;
  color: #2789D4;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fc_cta_btn svg {
  width: 16px;
  height: 16px;
}

.fc_cta_btn:hover {
  background-color: #2789D4;
  color: #ffffff;
}

/*=====================================================================*/
/*==================== FREIGHT CALCULATOR END ==============================*/
/*=====================================================================*/

.result-book-btn svg {
    width: .875rem;
}


/*=====================================================================*/
/*==================== PRIVACY POLICY ==============================*/
/*=====================================================================*/

/* ---------- Preamble card ---------- */
  .prv_preamble {
    margin-bottom: 40px; /* mb-10 */
    border-radius: 16px; /* rounded-2xl */
    border: 1px solid rgba(39, 137, 212, 0.2); /* border-primary/20 */
    border-left: 4px solid #2789D4; /* border-l-primary */
    background-color: #FFFFFF;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  }
  @media (min-width: 768px) {
    .prv_preamble { padding: 32px; }
  }

  .prv_preamble__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .prv_preamble__icon-wrap {
    padding: 12px;
    border-radius: 12px; /* rounded-xl */
    background-color: rgba(39, 137, 212, 0.1); /* bg-primary/10 */
    color: #2789D4;
    flex-shrink: 0;
    display: none; /* hidden on mobile */
  }
  @media (min-width: 640px) {
    .prv_preamble__icon-wrap { display: block; } /* sm:block */
  }

  .prv_preamble__icon {
    width: 24px;
    height: 24px;
  }

  .prv_preamble__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .prv_preamble__lead {
    font-size: 14px;
    font-weight: 500;
    color: #334155; /* text-slate-700 */
    line-height: 1.7;
  }
  @media (min-width: 768px) {
    .prv_preamble__lead { font-size: 16px; }
  }

  .prv_preamble__sub {
    font-size: 14px;
    color: #475569; /* text-slate-600 */
    line-height: 1.7;
  }
  @media (min-width: 768px) {
    .prv_preamble__sub { font-size: 16px; }
  }

  /* ---------- Numbered section cards ---------- */
  .prv_sections {
    display: flex;
    flex-direction: column;
    gap: 24px; /* space-y-6 */
  }

  .prv_card {
    border-radius: 16px; /* rounded-2xl */
    border: 1px solid rgba(226, 232, 240, 0.8); /* border-slate-200/80 */
    background-color: #FFFFFF;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  @media (min-width: 768px) {
    .prv_card { padding: 32px; }
  }
  .prv_card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-md */
    border-color: #CBD5E1; /* border-slate-300 */
  }

  .prv_card__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  @media (min-width: 640px) {
    .prv_card__inner { gap: 24px; }
  }

  .prv_card__number {
    display: flex;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* rounded-xl */
    background-color: rgba(10, 26, 51, 0.05); /* bg-navy/5 */
    color: #0A1A33;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .prv_card:hover .prv_card__number {
    background-color: #2789D4;
    color: #FFFFFF;
  }

  .prv_card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
  }
  .prv_card__body--tight {
    gap: 8px;
  }

  .prv_card__title {
    font-size: 18px; /* text-lg */
    font-weight: 700;
    color: #0A1A33;
  }
  @media (min-width: 768px) {
    .prv_card__title { font-size: 20px; } /* md:text-xl */
  }

  .prv_card__desc {
    font-size: 14px;
    color: #475569;
  }
  .prv_card__desc--relaxed {
    line-height: 1.7;
  }
  @media (min-width: 768px) {
    .prv_card__desc { font-size: 16px; }
  }

  /* ---------- Data / partner grid pills ---------- */
  .prv_card__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    padding-top: 4px;
  }
  @media (min-width: 640px) {
    .prv_card__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 768px) {
    .prv_card__grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 1024px) {
    .prv_card__grid { grid-template-columns: repeat(4, 1fr); }
  }

  .prv_card__grid-item {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* rounded-xl */
    border: 1px solid #E2E8F0; /* border-slate-200 */
    background-color: #FFFFFF;
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }
  .prv_card__grid-item:hover {
    border-color: #2789D4;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  /* ---------- Bullet / checklist lists ---------- */
  .prv_card__list {
    display: flex;
    flex-direction: column;
    gap: 8px; /* space-y-2 */
  }
  .prv_card__list--grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    padding-top: 4px;
  }
  @media (min-width: 640px) {
    .prv_card__list--grid { grid-template-columns: repeat(2, 1fr); }
  }

  .prv_card__list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #334155;
  }

  .prv_card__list-icon {
    width: 16px;
    height: 16px;
    color: #2789D4;
    flex-shrink: 0;
  }

  /* ---------- Sharing Information: highlight + note ---------- */
  .prv_card__highlight {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #059669; /* text-emerald-600 */
    background-color: #ECFDF5; /* bg-emerald-50 */
    padding: 8px 16px;
    border-radius: 12px;
  }
  @media (min-width: 768px) {
    .prv_card__highlight { font-size: 16px; }
  }

  .prv_card__note {
    font-size: 14px;
    color: #64748B; /* text-slate-500 */
    font-style: italic;
    padding-top: 4px;
  }

  /* =========================================================
     CONTACT / CTA FOOTER CARD
     ========================================================= */
  .prv_cta {
    margin-top: 48px; /* mt-12 */
    border-radius: 24px; /* rounded-3xl */
    background-color: #0A1A33;
    padding: 32px;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* shadow-xl */
  }
  @media (min-width: 640px) {
    .prv_cta {
      flex-direction: row;
      text-align: left;
    }
  }

  .prv_cta__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .prv_cta__text {
    font-size: 14px;
    color: #CBD5E1;
  }

  .prv_cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px; /* rounded-full */
    background-color: #2789D4;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }
  .prv_cta__button:hover {
    background-color: #1565C0; /* primary-dark */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  }

  .prv_cta__button-icon {
    width: 16px;
    height: 16px;
  }

/*=====================================================================*/
/*==================== PRIVACY POLICY END ==============================*/
/*=====================================================================*/


/*=====================================================================*/
/*==================== TERM AND CONDITIONS ==============================*/
/*=====================================================================*/

/* ---------- Preamble card ---------- */
  .tr_preamble {
    margin-bottom: 40px; /* mb-10 */
    border-radius: 16px; /* rounded-2xl */
    border: 1px solid rgba(39, 137, 212, 0.2); /* border-primary/20 */
    border-left: 4px solid #2789D4; /* border-l-primary */
    background-color: #FFFFFF;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  }
  @media (min-width: 768px) {
    .tr_preamble { padding: 32px; }
  }

  .tr_preamble__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .tr_preamble__icon-wrap {
    padding: 12px;
    border-radius: 12px; /* rounded-xl */
    background-color: rgba(39, 137, 212, 0.1); /* bg-primary/10 */
    color: #2789D4;
    flex-shrink: 0;
    display: none; /* hidden on mobile */
  }
  @media (min-width: 640px) {
    .tr_preamble__icon-wrap { display: block; } /* sm:block */
  }

  .tr_preamble__icon {
    width: 24px;
    height: 24px;
  }

  .tr_preamble__text {
    font-size: 14px;
    font-weight: 400;
    color: #334155; /* text-slate-700 */
    line-height: 1.7;
  }
  @media (min-width: 768px) {
    .tr_preamble__text { font-size: 16px; }
  }

  /* ---------- Numbered terms cards ---------- */
  .tr_sections {
    display: flex;
    flex-direction: column;
    gap: 24px; /* space-y-6 */
  }

  .tr_card {
    border-radius: 16px; /* rounded-2xl */
    border: 1px solid rgba(226, 232, 240, 0.8); /* border-slate-200/80 */
    background-color: #FFFFFF;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  @media (min-width: 768px) {
    .tr_card { padding: 32px; }
  }
  .tr_card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-md */
    border-color: #CBD5E1; /* border-slate-300 */
  }

  .tr_card__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  @media (min-width: 640px) {
    .tr_card__inner { gap: 24px; }
  }

  .tr_card__number {
    display: flex;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* rounded-xl */
    background-color: rgba(10, 26, 51, 0.05); /* bg-navy/5 */
    color: #0A1A33;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .tr_card:hover .tr_card__number {
    background-color: #2789D4;
    color: #FFFFFF;
  }

  .tr_card__body {
    display: flex;
    flex-direction: column;
    gap: 8px; /* space-y-2 */
    flex-grow: 1;
  }

  .tr_card__title {
    font-size: 18px; /* text-lg */
    font-weight: 700;
    color: #0A1A33;
  }
  @media (min-width: 768px) {
    .tr_card__title { font-size: 20px; } /* md:text-xl */
  }

  .tr_card__desc {
    font-size: 14px;
    color: #475569; /* text-slate-600 */
    line-height: 1.7;
  }
  @media (min-width: 768px) {
    .tr_card__desc { font-size: 16px; }
  }

  /* =========================================================
     CONTACT / CTA FOOTER CARD
     ========================================================= */
  .tr_cta {
    margin-top: 48px; /* mt-12 */
    border-radius: 24px; /* rounded-3xl */
    background-color: #0A1A33;
    padding: 32px;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* shadow-xl */
  }
  @media (min-width: 640px) {
    .tr_cta {
      flex-direction: row;
      text-align: left;
    }
  }

  .tr_cta__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .tr_cta__text {
    font-size: 14px;
    color: #CBD5E1;
  }

  .tr_cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px; /* rounded-full */
    background-color: #2789D4;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }
  .tr_cta__button:hover {
    background-color: #1565C0; /* primary-dark */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  }

  .tr_cta__button-icon {
    width: 16px;
    height: 16px;
  }

/*=====================================================================*/
/*==================== TERM AND CONDITIONS END ==============================*/
/*=====================================================================*/















