/* ===== Variables ===== */
:root {
  --navy-900: #0A1F44;
  --navy-800: #0F2D63;
  --blue-600: #1E64F0;
  --blue-500: #2F73F5;
  --blue-400: #4D8BFF;
  --blue-50: #EAF1FE;
  --blue-25: #F4F7FE;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --bg-soft: #F4F7FB;
  --star: #FFB800;
  --success: #22C55E;
  --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 31, 68, 0.12);
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-head { text-align: center; margin-bottom: 44px; }
.eyebrow { color: var(--blue-600); font-weight: 600; font-size: 14px; display: inline-block; margin-bottom: 8px; }
.section-head h2 { color: var(--navy-900); font-size: 36px; font-weight: 800; letter-spacing: -.02em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 8px; font-weight: 600; transition: all .2s ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn--primary { background: var(--blue-600); color: #fff; }
.btn--primary:hover { background: #1854cc; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--sm { padding: 7px 18px; font-size: 14px; }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--primary.btn--lg { box-shadow: 0 10px 25px rgba(30,100,240,.35); }

/* ===== Top bar ===== */
.top-bar { background: var(--navy-900); color: #fff; font-size: 13px; position: relative; z-index: 100; }
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; }
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 24px; }
.top-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; transition: color .2s; }
.top-link:hover { color: var(--blue-400); }
.top-link i { font-size: 12px; }

/* ===== Navbar ===== */
.navbar { background: #fff; box-shadow: 0 1px 0 var(--gray-100); position: sticky; top: 0; z-index: 50; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__icon {
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  border: 2px solid var(--blue-600); color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.brand__name--dark { color: var(--navy-900); }
.brand__name--blue { color: var(--blue-600); }
.brand__tag { font-size: 11px; color: var(--gray-500); margin-top: 4px; letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  position: relative; font-size: 15px; font-weight: 500; color: #4B5563;
  padding-bottom: 4px; transition: color .2s;
}
.nav a:hover { color: var(--blue-600); }
.nav a.is-active { color: var(--blue-600); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px; background: var(--blue-600);
}

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-800) 45%, #1B4FBF 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,31,68,.92) 0%, rgba(15,45,99,.75) 40%, rgba(30,100,240,.2) 100%);
}
.hero__inner { position: relative; padding: 80px 24px 160px; max-width: 1280px; }
.hero__copy { max-width: 640px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(30,100,240,.25); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 500;
  backdrop-filter: blur(4px);
}
.pill i { color: #FFD45A; font-size: 11px; }
.hero__copy h1 {
  font-size: 52px; font-weight: 800; line-height: 1.15;
  margin-top: 16px; letter-spacing: -.02em;
}
.hero__highlight { color: var(--blue-400); }
.hero__copy p { color: #C9D8F1; font-size: 16px; margin-top: 18px; line-height: 1.7; }
.hero__ctas { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 18px; color: #B9CAE5; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__trust i { color: #FFD45A; font-size: 11px; }

/* ===== Feature bar (overlaps hero) ===== */
.feature-bar-wrap { position: relative; margin-top: -70px; z-index: 5; }
.feature-bar {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 22px 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border: 1px solid #EDF1F7;
}
.feature { display: flex; align-items: center; gap: 14px; }
.feature__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50);
  color: var(--blue-600); display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.feature__title { color: var(--navy-900); font-weight: 600; font-size: 15px; }
.feature__sub { color: var(--gray-500); font-size: 13px; margin-top: 2px; }

/* ===== Numbers ===== */
.numbers { padding: 80px 0 70px; background: #fff; }
.numbers__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.num-card {
  background: #fff; border: 1px solid #EDF1F7; border-radius: 14px;
  padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.num-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.num-card__icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--blue-50);
  color: var(--blue-600); display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.num-card__icon--gold { background: #FFF6E0; color: #E9A800; }
.num-card__value { color: var(--blue-600); font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.num-card__label { color: var(--navy-900); font-weight: 600; font-size: 15px; margin-top: 8px; }
.num-card__sub { color: var(--gray-500); font-size: 13px; margin-top: 4px; }

/* ===== Company strip ===== */
.company-strip { padding: 30px 0 60px; background: #fff; }
.company-strip__title { text-align: center; color: var(--navy-900); font-weight: 600; font-size: 15px; margin-bottom: 28px; }
.logos__row {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px; filter: grayscale(.15);
}
.logo { display: inline-flex; align-items: center; gap: 8px; opacity: .92; transition: opacity .25s, transform .25s; font-weight: 700; }
.logo:hover { opacity: 1; transform: translateY(-2px); }
.logo--maersk { color: #1B2A55; font-size: 22px; letter-spacing: 1px; }
.logo--maersk .logo__star {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; background: #42B0D5; color: #fff; font-size: 16px;
}
.logo--msc { color: #1B2A55; font-family: Georgia, serif; font-style: italic; font-size: 42px; font-weight: 800; line-height: 1; }
.logo--cosco { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.logo__cosco-main { color: #E30613; font-size: 22px; letter-spacing: .5px; }
.logo__cosco-sub { color: #E30613; font-size: 10px; margin-top: 2px; letter-spacing: 2px; }
.logo--evergreen { color: #1B7A3E; font-size: 20px; letter-spacing: 2px; }
.logo--evergreen .logo__leaf {
  width: 28px; height: 28px; border-radius: 50%; background: #1B7A3E; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
}
.logo--cma { color: #003D7A; font-size: 22px; }
.logo--hapag { color: #003D7A; font-size: 18px; }
.logo--hapag .logo__hapag-mark { color: #FF6600; font-size: 22px; font-weight: 900; margin-right: 4px; }
.logo--one { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.logo__one-main { color: #E5007D; font-size: 30px; font-style: italic; font-weight: 900; }
.logo__one-sub { color: #E5007D; font-size: 7px; margin-top: 3px; letter-spacing: 1.5px; }
.logos__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #D5DBE6; transition: all .3s; }
.dot--active { background: var(--blue-600); width: 26px; border-radius: 4px; }

/* ===== How it works ===== */
.how { padding: 80px 0; background: var(--blue-25); }
.how__grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px; align-items: center;
}
.step-card {
  position: relative; background: #fff; border-radius: 14px;
  padding: 36px 28px 30px; text-align: center;
  border: 1px solid #EDF1F7; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue-600);
  color: #fff; font-weight: 700; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(30,100,240,.35);
}
.step__icon {
  width: 70px; height: 70px; border-radius: 16px; background: var(--blue-50);
  color: var(--blue-600); display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 8px auto 18px;
}
.step-card h3 { color: var(--navy-900); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--gray-500); font-size: 14px; line-height: 1.6; }
.step-arrow { color: var(--blue-400); font-size: 22px; }
.step-arrow i { display: block; }

/* ===== Features ===== */
.features { padding: 80px 0; background: #fff; }
.features__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.feat-card {
  background: #fff; border: 1px solid #EDF1F7; border-radius: 14px;
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--blue-50);
  color: var(--blue-600); display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feat-card h4 { color: var(--navy-900); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { color: var(--gray-500); font-size: 13.5px; line-height: 1.65; }

/* ===== Pricing ===== */
.pricing { padding: 80px 0; background: var(--blue-25); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative; background: #fff; border: 1px solid #EDF1F7; border-radius: 16px;
  padding: 34px 30px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--popular {
  border: 2px solid var(--blue-600);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.plan--popular:hover { transform: translateY(-16px); }
.plan__badge {
  position: absolute; top: 18px; right: -6px;
  background: linear-gradient(135deg, #34D399, #22C55E);
  color: #fff; padding: 6px 16px; border-radius: 6px 0 0 6px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 10px rgba(34,197,94,.3);
}
.plan__name { color: var(--navy-900); font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.plan__price { display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 28px; }
.plan__currency { color: var(--blue-600); font-size: 24px; font-weight: 700; }
.plan__amount { color: var(--blue-600); font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.plan__period { color: var(--gray-500); font-size: 13px; }
.plan__features { text-align: left; margin-bottom: 28px; flex-grow: 1; }
.plan__features li {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray-700); font-size: 14px; padding: 8px 0;
}
.plan__features li i { color: var(--success); font-size: 15px; }
.plan__btn {
  display: block; padding: 13px 20px; border-radius: 8px;
  color: var(--blue-600); border: 1.5px solid var(--blue-600);
  font-weight: 600; font-size: 14px; transition: all .2s;
}
.plan__btn:hover { background: var(--blue-50); }
.plan__btn--solid { background: var(--blue-600); color: #fff; border-color: var(--blue-600); box-shadow: 0 8px 20px rgba(30,100,240,.3); }
.plan__btn--solid:hover { background: #1854cc; }

.payments {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 36px; color: var(--gray-500); font-size: 13px;
  flex-wrap: wrap;
}
.payments__label { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy-900); }
.pay-method {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px; background: #fff; border: 1px solid var(--gray-200);
  border-radius: 6px; font-weight: 700; font-size: 14px; color: var(--navy-900);
}
.pay-method--visa { color: #1A1F71; letter-spacing: 1px; font-style: italic; }
.pay-method--mc { gap: 0; padding: 6px 12px; }
.mc-dot { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
.mc-dot--red { background: #EB001B; }
.mc-dot--yellow { background: #F79E1B; margin-left: -6px; }
.pay-method--upi { color: #097939; font-weight: 800; }
.pay-method--upi .upi-pay { color: #F47821; margin-left: 2px; }
.pay-method--rupay { color: #097939; }

/* ===== Stories ===== */
.stories { padding: 80px 0; background: #fff; }
.stories__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.story {
  background: #fff; border: 1px solid #EDF1F7; border-radius: 14px;
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story__text { color: #3B4658; font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
.stars { display: inline-flex; gap: 3px; color: var(--star); font-size: 14px; margin-bottom: 16px; }
.person { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.person img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--blue-50);
}
.person__name { font-weight: 600; color: var(--navy-900); font-size: 14px; }
.person__role { color: var(--gray-500); font-size: 12px; margin-top: 2px; }

/* ===== CTA ===== */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--blue-600) 100%);
  color: #fff;
}
.cta__bg { position: absolute; inset: 0 0 0 50%; opacity: .25; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy-900), transparent 60%);
}
.cta__inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 52px 24px; gap: 20px; flex-wrap: wrap;
}
.cta h2 { font-size: 30px; font-weight: 800; letter-spacing: -.01em; }
.cta p { color: #C9D8F1; margin-top: 8px; font-size: 15px; }

/* ===== Footer ===== */
.footer { background: var(--navy-900); color: #C9D8F1; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px; padding: 60px 24px 40px;
}
.footer__desc { color: #B9CAE5; font-size: 14px; margin-top: 14px; line-height: 1.7; }
.brand--light .brand__icon { background: #fff; border-color: var(--blue-600); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all .2s;
}
.socials a:hover { background: var(--blue-600); border-color: var(--blue-600); }
.footer__col h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 18px; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul li a { color: #B9CAE5; font-size: 14px; transition: color .2s; }
.footer__col ul li a:hover { color: #fff; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #B9CAE5; font-size: 14px;
}
.contact-list li i { color: var(--blue-400); margin-top: 4px; font-size: 14px; }
.contact-list__sub { color: #8FA4C7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); text-align: center;
  padding: 18px 24px; color: #8FA4C7; font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav { gap: 22px; }
  .nav a { font-size: 14px; }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .stories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero__copy h1 { font-size: 38px; }
  .feature-bar { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; gap: 38px; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .plan--popular { transform: none; }
  .plan--popular:hover { transform: translateY(-4px); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .top-bar__left { gap: 14px; }
  .top-bar__left .top-link span { display: none; }
  .navbar__inner { flex-direction: column; gap: 14px; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .hero__inner { padding: 60px 24px 140px; }
  .hero__copy h1 { font-size: 30px; }
  .feature-bar { grid-template-columns: 1fr; }
  .stories__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .cta h2 { font-size: 24px; }
  .section-head h2 { font-size: 28px; }
}





/* contact form css */

.section-head {
  text-align: center;
}

/* grid center */
.how__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 👈 main center */
  gap: 20px;
}

/* cards ko fix width de for proper alignment */
.step-card {
  width: 260px;
  text-align: center; /* content bhi center */
}

/* icon center */
.step__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}




/* section */
.form-map-section {
  padding: 80px 20px;
  background: #f9fafb;
}

/* container center */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* GRID */
.form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* FORM CARD */
.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.form-card h3 {
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #1E64F0;
}

/* BUTTON */
.send-btn {
  background: #1E64F0;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.send-btn:hover {
  background: #174ec0;
}

/* MAP CARD */
.map-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* MAP */
.map-frame iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* MAP INFO */
.map-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-info-left {
  display: flex;
  gap: 15px;
}

.map-pin {
  font-size: 20px;
  color: #1E64F0;
}

/* BUTTON */
.directions-btn {
  text-decoration: none;
  color: #1E64F0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .form-map-grid {
    grid-template-columns: 1fr;
  }

  .map-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}



#contact {
  scroll-margin-top: 80px;
}