@font-face {
  font-family: "lato";
  src: url(/fonts/Lato/Lato-Regular.ttf);
}
@font-face {
  font-family: "montserrat";
  src: url(/fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.3;
  font-size: 16px;
  font-weight: 400;
  font-family: "lato", sans-serif;
  background-color: var(--bg);
  color: var(--sec-text);
}
/* Alert Messages */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.alert-info {
  background-color: #e3f2fd;
  border-left: 4px solid #2196f3;
  color: #1565c0;
}

.alert-info i {
  color: #2196f3;
}

.alert-error {
  background-color: #ffebee;
  border-left: 4px solid #f44336;
  color: #c62828;
}

.alert-error i {
  color: #f44336;
}

.alert-success {
  background-color: #e8f5e9;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
}

.alert-success i {
  color: #4caf50;
}

.alert-warning {
  background-color: #fff3e0;
  border-left: 4px solid #ff9800;
  color: #e65100;
}

.alert-warning i {
  color: #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
  .alert {
    padding: 12px;
    font-size: 14px;
  }
}
/* Reuseable component */
a {
  text-decoration: none;
  color: inherit;
}
section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0;
}
.section-title {
  font-size: 230%;
  color: var(--pri-text);
  text-align: center;
}
.colored-text {
  color: var(--sec);
}
:root {
  --bg: #ffffff;
  --pri: #182f68;
  --sec: #3b82f6;
  --accent: #eaf1ff;
  --pri-text: #0f172a;
  --sec-text: #475569;
  --muted-text: #94a3b8;
}

/* buttons */
.btn {
  padding: 1rem 1.8rem;
  border-radius: 5px;
  border: none;
  background-color: var(--pri);
  color: var(--bg);
  text-transform: capitalize;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s ease;
}
.btn-ghost {
  background-color: transparent;
  border: 1px solid var(--sec);
  padding: 1rem 1.8rem;
  border-radius: 5px;
  color: var(--bg);
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.5s ease;
}
.btn:active {
  transform: scale(0.9);
}
.btn:hover {
  background-color: var(--sec);
}
.btn-ghost:active {
  transform: scale(0.9);
  color: var(--bg);
}
.btn-ghost:hover {
  background-color: var(--sec);
  color: var(--bg);
}
/* logo style */
.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo-image {
  height: 80px;
}
.logo-text {
  font-size: 105%;
  margin-left: -6px;
}
header {
  height: 16vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Top Bar */
.top-bar {
  background-color: var(--pri);
  height: 35%;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  color: var(--bg);
  justify-content: space-between;
  z-index: 999;
}
.support-container,
.email-container {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.top-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--bg);
}
.top-bar-icon .lucide {
  color: var(--pri);
  height: 15px;
  width: 15px;
  stroke-width: 2;
}
.email-container {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.email-container span {
  color: white;
  font-size: 90%;
}
.topbar-text {
  font-size: 90%;
}
/* Nav Bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65%;
  padding: 0 4rem;
  z-index: 99;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  text-transform: capitalize;
  list-style: none;
  color: var(--pri-text);
}
.nav-link li:hover {
  color: var(--sec);
  transition: all ease-in 0.15s;
}
/* responsive nav */
.hamburger-btn {
  display: none;
}
.mobile-drawer {
  display: none;
}
/* hero section */

.hero-container {
  height: 84vh;
}

.heroSwiper {
  width: 100%;
  height: 84vh;
}

.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 84vh;
  overflow: hidden;
}

.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(3, 15, 35, 0.75),
    rgba(3, 15, 35, 0.45),
    rgba(3, 15, 35, 0.75)
  );

  z-index: 1;
}

.hero-container .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.hero-tag {
  color: var(--sec);
  font-weight: 600;
  font-size: 110%;
}
.hero-container .hero-content h1 {
  font-size: 450%;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  line-height: 1.2;
}
.hero-container .hero-content h1 span {
  color: var(--sec); /* or your blue variable */
}
.hero-container .hero-content p {
  font-size: 110%;
  width: 40%;
  margin: 0 auto;
}
.hero-action {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  font-weight: 500;
  font-size: 100%;
}
.hero-action a,
.hero-action button {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-action a .lucide,
.hero-action button .lucide {
  height: 18px;
  width: 18px;
}
/* how it works  */
.process-container {
  display: grid;
  margin: 1rem;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.process {
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 1.3rem;
}
.step-icon {
  margin-bottom: 1rem;
  background-color: #4480e0;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: #ffffff;
}
.process p {
  color: var(--sec-text);
  margin-top: 0.5rem;
  font-size: 100%;
}
/* service */
.service-container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
}

.service-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.service-item.service-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item h2 {
  font-size: 250%;
  color: var(--pri-text);
  margin-bottom: 0.3rem;
}

.service-item p {
  color: var(--sec-text);
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
  transition:
    transform 0.4s ease-in-out,
    filter 0.4s ease-in-out;
}

.service-item:hover img {
  transform: scale(1.05);
  filter: brightness(85%);
}

.service-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem 0.9rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  pointer-events: none;
}

.service-label i[data-lucide] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
/* tracking section */
.track-section {
  height: 50vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/track-bg.png);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}
.track-wrapper h2 {
  font-size: 250%;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.track-wrapper p {
  width: 40%;
  margin-bottom: 1rem;
}
.tracking-form {
  width: 45%;
  height: 50px;
  display: flex;
  gap: 0;
}
.tracking-form input {
  border: none;
  outline: none;
  padding: 10px;
  width: 70%;
  height: 100%;
}
.tracking-form button {
  width: 30%;
  height: 100%;
  background-color: var(--pri);
  border: none;
  color: white;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
.tracking-form button:hover {
  background-color: var(--sec);
}
/* about section */
.about-section {
  background-color: #f8fafc;
}
.about-wrapper {
  display: flex;
  padding-bottom: 0;
}
.about-content,
.about-media {
  width: 50%;
}
.label-text {
  font-size: 80%;
  color: var(--muted-text);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-content h2 {
  font-size: 250%;
  text-transform: capitalize;
  margin-bottom: 1rem;
  color: var(--pri-text);
  width: 80%;
}
.about-desc {
  width: 80%;
  color: var(--sec-text);
  margin-bottom: 1.5rem;
}
.about-content button {
  margin-bottom: 1rem;
}
.about-media {
  position: relative;
  bottom: 0;
}
.about-img {
  width: 104%;
  position: absolute;
  bottom: 0;
}
/* testimonial section */
.testimonial-section {
  background-color: #0f172a;
  height: auto;
  color: white;
}
.testimonial-wrapper h2 {
  font-size: 250%;
  text-transform: capitalize;
  margin-bottom: 2rem;
  width: 40%;
}
.testimonial-section .swiper-wrapper {
  gap: 1.5rem;
}
.testimonial-section .swiper-slide {
  flex: 1;
  width: auto !important;
}
.testimonial-section .swiper-button-prev,
.testimonial-section .swiper-button-next {
  display: none !important;
}
.testimonial-card {
  width: 100%;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  height: auto;
  transition: all 0.5s ease-in-out;
}
.testimonial-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.testimonial-card p {
  margin-bottom: 2rem;
}
.testimonial-card h3 {
  font-size: 110%;
  font-weight: 500;
}
cite {
  font-size: 90%;
}
.testimonial-card:hover {
  background-color: var(--sec);
  border: 1px solid var(--pri);
}

/* CTA section */
.cta-section {
  text-align: center;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0 40px;
}
.cta-title {
  font-size: 350%;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.colored-cta-title {
  font-size: 130%;
  color: var(--sec);
}
.cta-section p {
  color: var(--sec-text);
}
.cta-action-btn {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.cta-action-btn .btn-ghost {
  color: var(--pri-text);
}
.cta-action-btn .btn-ghost:hover {
  color: var(--bg);
}
.watermark-img {
  position: absolute;
  opacity: 5%;
  top: 15%;
  z-index: -10;
}
.cta-hero {
  height: 180%;
}

/* footer */
footer {
  background-color: #0b1220;
  color: var(--bg);
}

.footer-wrapper {
  display: flex;
  gap: 1rem;
}
.brand-section {
  width: 50%;
  padding: 1rem;
}
.quick-links,
.contact-scetion {
  padding: 1rem;
  width: 25%;
}
.footer-wrapper h2 {
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-size: 130%;
}
.footer-wrapper ul {
  list-style: none;
  text-transform: capitalize;
  padding: 1rem;
}
.footer-wrapper li {
  padding: 0.6rem 0.4rem;
  border-radius: 10px;
}
.footer-wrapper li:hover {
  background-color: #0d1e36;
  color: var(--sec);
}
.contact-scetion h3 {
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-size: 130%;
}
.contact-scetion {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.contact-scetion div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-scetion div .lucide {
  height: 16px;
  width: 16px;
}
/* reserved */
.after-footer {
  display: flex;
  justify-content: space-between;
  border-top: solid var(--muted-text) 1px;
  text-align: center;
  padding: 30px;
  color: var(--muted-text);
}

.terms-policy {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  text-transform: capitalize;
}
/* Mini Hero */
.mini-hero {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.breadcrumb__link {
  font-size: 90%;
  color: rgb(90, 139, 254);
  display: flex;
  align-items: center;
}
.breadcrumb__link .lucide {
  height: 16px;
  width: 16px;
}
.breadcrumb {
  display: flex;
  gap: 4px;
  margin-top: 1rem;
}
.breadcrumb__current {
  color: #ccc;
  font-size: 100%;
}
.mini-hero h1 {
  font-size: 300%;
}
.highlight-section {
  background-color: #f3f8ff;
}
/*  About Page  */
.about-hero {
  background:
    linear-gradient(rgba(16, 49, 99, 0.95), rgba(16, 49, 99, 0.85)),
    url(../images/about_hero.jpg);
  background-position: center;
  background-size: cover;
  height: 50vh;
  background-attachment: fixed;
}
.about-container {
  display: flex;
  justify-content: space-between;
}
.about-split-left {
  width: 45%;
  padding: 1rem;
}
.about-page-title {
  color: black;
  margin-bottom: 1rem;
}
.about-page-subtitle {
  color: var(--sec);
  font-weight: 600;
  font-size: 110%;
  margin-bottom: 1rem;
}
.about-page-text {
  margin-bottom: 1rem;
  line-height: 1.5;
  word-spacing: 1px;
}
.about-page-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-page-actions a {
  margin-top: 1.5rem;
  background-color: var(--pri);
  border-radius: 10px;
  border: none;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}
.about-page-actions a .lucide {
  height: 16px;
  width: 16px;
}
/* media */
.about-slide {
  width: 50%;
}
.aboutSwiper {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}

.aboutSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.aboutSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* foundation */
.foundation-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.foundation-card {
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  color: var(--muted-text);
  background-color: white;
  overflow: hidden;
}
.foundation-card-image {
  width: 100%;
  height: 250px;
}
.foundation-card-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.foundation-card-content {
  padding: 1rem;
}
.foundation-card-icon {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background-color: #c7d8f0;
  color: var(--sec);
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foundation-card-title {
  color: black;
  margin-bottom: 0.8rem;
}
/* safety section */
.safety-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.safety-section-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.safety-section-header-icon {
  background-color: green;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.safety-section-title {
  color: black;
}
.safety-section-text {
  margin-top: 1rem;
  line-height: 1.5;
  word-spacing: 1px;
}
.safety-cards {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}
.safety-card {
  background-color: rgb(231, 247, 215);
  width: 50%;
  padding: 1rem;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  border-radius: 10px;
}
.safety-card-value {
  color: green;
}
.security-section-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.security-section-header-icon {
  background-color: green;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.security-section-title {
  color: black;
}

.security-section-text {
  margin-top: 1rem;
  line-height: 1.5;
  word-spacing: 1px;
}

.security-cards {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.security-card {
  background-color: rgb(215, 239, 247);
  width: 50%;
  padding: 1rem;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  border-radius: 10px;
}

/* Service page */
.services-intro {
  text-align: center;
}
.services-intro-tag {
  color: var(--sec);
  font-size: 105%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.services-intro-heading {
  color: black;
  font-size: 200%;
  margin-bottom: 0.5rem;
}
.services-intro-description {
  font-size: 120%;
  width: 50%;
  margin: 0 auto;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.service-items {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  height: 430px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.service-item-media {
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.service-item-media h4 {
  z-index: 2;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease-in 1s;
}
.service-img:hover {
  transform: scale(1.1);
}
.service-item-content {
  padding: 1rem;
}
.service-texts {
  line-height: 1.4;
  color: var(--muted-text);
  font-size: 95%;
  margin-bottom: 1rem;
}
.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.service-tag {
  background-color: #c7d8f0;
  padding: 4px 10px;
  color: var(--sec);
  border-radius: 50px;
  font-size: 80%;
}
.service-btn {
  border: none;
  background-color: transparent;
  color: var(--sec);
  margin-top: 1.5rem;
}
/* Track Page*/
.tracking-hero {
  background:
    linear-gradient(rgba(16, 49, 99, 0.95), rgba(16, 49, 99, 0.85)),
    url(../images/tracking_hero.avif);
  background-position: center;
  background-size: cover;
  height: 50vh;
  background-attachment: fixed;
}

.track-split {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.track-split-text {
  width: 35%;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  color: var(--muted-text);
}
.track-split-title {
  margin-bottom: 1rem;
  color: black;
  font-size: 160%;
}
.track-form p {
  font-size: 90%;
  color: black;
  margin-top: 1rem;
}
.track-form input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-top: 0.5rem;
  padding-left: 1rem;
}
.track-form button {
  background-color: var(--sec);
  padding: 12px 0;
  border-radius: 10px;
  border: none;
  color: white;
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  cursor: pointer;
}
.track-form button .lucide {
  height: 16px;
  width: 16px;
}
.track-tips {
  margin-top: 1rem;
  border-top: 1px solid var(--muted-text);
  padding: 1rem;
}
.track-tips h2 {
  font-size: 120%;
  color: black;
}
.track-tips li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
  font-size: 90%;
}
.track-tips li .lucide {
  color: var(--sec);
  height: 16px;
  width: 16px;
}
/* media */
.track-split-media {
  width: 50%;
}
.track-split-img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}
/* help center */
.tracking-intro {
  text-align: center;
}
.tracking-intro-tag {
  color: var(--sec);
  font-size: 105%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tracking-intro-heading {
  color: black;
  font-size: 200%;
  margin-bottom: 0.5rem;
}
.tracking-intro-description {
  font-size: 120%;
  width: 50%;
  margin: 0 auto;
}
.tracking-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.tracking-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  color: var(--muted-text);
}
.tracking-icon {
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}
.tracking-icon .lucide {
  height: 20px;
  width: 20px;
  stroke-width: 8s;
  color: var(--sec);
}
.tracking-title {
  font-size: 150%;
  color: black;
  margin-bottom: 0.6rem;
}
/* Contact Page */
.contact-hero {
  background:
    linear-gradient(rgba(16, 49, 99, 0.95), rgba(16, 49, 99, 0.85)),
    url(../images/contact_hero.avif);
  background-position: center;
  background-size: cover;
  height: 50vh;
  background-attachment: fixed;
}
.contact-intro {
  text-align: center;
}
.contact-intro-tag {
  color: var(--sec);
  font-size: 105%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-intro-heading {
  color: black;
  font-size: 200%;
  margin-bottom: 0.5rem;
}
.contact-intro-description {
  font-size: 120%;
  width: 50%;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.contact-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  color: var(--muted-text);
  text-align: center;
}
.contact-icon {
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  justify-self: center;
}
.contact-icon .lucide {
  height: 20px;
  width: 20px;
  stroke-width: 8s;
  color: var(--sec);
}
.contact-title {
  font-size: 150%;
  color: black;
  margin-bottom: 0.6rem;
}
.contact-text {
  margin-bottom: 0.6rem;
}
.contact-meta {
  color: var(--sec);
}
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-split-left {
  width: 40%;
  padding: 1rem;
}
.contact-info-title {
  font-size: 180%;
  color: black;
  margin-bottom: 1rem;
}
.contact-info-text {
  word-spacing: 1px;
  font-size: 105%;
  margin-bottom: 2rem;
}
.contact-info-list li {
  list-style: none;
  display: flex;
  margin-top: 1rem;
  gap: 5px;
  align-items: center;
}
.contact-info-icon {
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}
.contact-split-right {
  width: 40%;
}
.contact-info-icon .lucide {
  height: 20px;
  width: 20px;
  stroke-width: 8s;
  color: var(--sec);
}
.contact-form {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  color: var(--muted-text);
}
.contact-form h2 {
  color: black;
  margin-bottom: 0.8rem;
}
.form-row {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}
.form-row .form-item {
  width: 50%;
}
.form-item input {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  padding-left: 10px;
  border-radius: 10px;
  margin-top: 0.4rem;
}
.form-item label {
  color: var(--sec-text);
}
.form-item textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding-left: 10px;
  border-radius: 10px;
  margin-top: 1rem;
  padding: 1rem;
}
.form-item .submit-btn {
  width: 100%;
  background-color: var(--pri);
  height: 50px;
  margin-top: 2rem;
  border-radius: 10px;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-item .submit-btn:hover {
  background-color: var(--sec);
}
.form-item .submit-btn .lucide {
  height: 17px;
  width: 17px;
}
/* Track Result */
.tracking-page {
  padding-top: 20px;
}

.action-required-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.9rem 1rem;
  background-color: #2a1f0f;
  border-left: 5px solid #f59e0b;
  border-radius: 6px;
  color: #fde68a;
  margin: 1rem auto;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
}

.status-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
}

.warning-icon {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  animation: pulse-warning 2s ease-in-out infinite;
}

.status-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.45;
}

.status-text strong {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.status-text span {
  color: #fde68a;
  font-size: 0.88rem;
  opacity: 0.9;
  font-weight: 500;
}

@keyframes pulse-warning {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.tracking-dashboard {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* padding: 1rem; */
}
.tracking-header {
  background-color: var(--accent);
  padding: 1.5rem;
  margin: 0 auto 2rem;
  border-radius: 1rem 1rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tracking-number-wrapper h4 {
  color: var(--muted-text);
  text-transform: capitalize;
  font-size: 90%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tracking-number-wrapper h4 .lucide {
  height: 18px;
  width: 18px;
}
.tracking-number-wrapper p {
  font-size: 250%;
  color: var(--sec-text);
  margin: 0.5rem auto 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.tracking-status {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.01);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
}
.tracking-status .lucide {
  height: 18px;
  width: 18px;
  stroke-width: 2;
}
.tracking-status p {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ✅ NEW: Status Badge Styling */
.status-text {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: capitalize;
  font-size: 80%;
  font-weight: 600;
}

.status-text.status-blue {
  background-color: #dbeafe;
  color: #1e40af;
}

.status-text.status-red {
  background-color: #fee2e2;
  color: #dc2626;
}

.status-text.status-orange {
  background-color: #fed7aa;
  color: #d97706;
}

.tracking-last-update {
  font-size: 100%;
  margin-top: 10px;
}
.tracking-last-update .lucide {
  height: 16px;
  width: 16px;
  stroke-width: 1.6;
}
.tracking-last-update p {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* shipment overview */
.shipment-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}
.shipment-overview p .lucide {
  width: 14px;
  height: 14px;
  stroke-width: 1.7;
  opacity: 0.6;
  margin-right: 5px;
}

.sender-info h4 {
  color: var(--sec);
  margin-bottom: 1rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sender-info h4 .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  opacity: 0.9;
}

.sender-info span {
  color: var(--muted-text);
}
.sender-info p {
  margin-bottom: 0.7rem;
  text-transform: capitalize;
}
.receiver-info h4 {
  color: var(--sec);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.receiver-info h4 .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  opacity: 0.9;
}
.receiver-info span {
  color: var(--muted-text);
}
.receiver-info p {
  margin-bottom: 0.7rem;
  text-transform: capitalize;
}
.shipment-details h4 {
  color: var(--sec);
  margin-bottom: 1rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 6px;
}
.shipment-details h4 .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  opacity: 0.9;
}
.shipment-details span {
  color: var(--muted-text);
}
.shipment-details p {
  margin-bottom: 0.7rem;
  text-transform: capitalize;
}
.tracking-insights h4 {
  color: var(--sec);
  margin-bottom: 1rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tracking-insights h4 .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  opacity: 0.9;
}
.tracking-insights span {
  color: var(--muted-text);
}
.tracking-insights p {
  margin-bottom: 0.7rem;
  text-transform: capitalize;
}

/* ✅ NEW: Tracking Insights Status Styling */
.tracking-insights strong {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 90%;
}

.tracking-insights strong.status-blue {
  background-color: #dbeafe;
  color: #1e40af;
}

.tracking-insights strong.status-red {
  background-color: #fee2e2;
  color: #dc2626;
}

.tracking-insights strong.status-orange {
  background-color: #fed7aa;
  color: #d97706;
}

/* shipment progress */
.shipment-progress {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-top: 2rem;
  overflow: hidden;
}

.shipment-header {
  background: #e2e8f0;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
}

.shipment-progress h2 {
  color: #1e293b;
  font-size: 120%;
  text-transform: capitalize;
}

.shipment-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  gap: 0.5rem;
}

.steps {
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps p {
  color: var(--sec-text);
  font-size: 85%;
  margin-top: 0.5rem;
  text-transform: capitalize;
  font-weight: 600;
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
  margin: 0 auto;
  border: 4px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #94a3b8;
}

.circle .lucide {
  height: 25px;
  width: 25px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.line {
  flex: 1;
  height: 4px;
  background: #e5e7eb;
  transition: background-color 0.3s ease;
  min-width: 20px;
}

/* Completed State */
.steps.completed .circle {
  background: #4da3ff;
  color: white;
  border-color: #4da3ff;
}

.steps.completed .circle .lucide {
  opacity: 1;
}

.line.completed {
  background: #4da3ff;
}

/* Active State (On Hold) */
.steps.active .circle {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
  box-shadow:
    0 0 0 4px rgba(245, 158, 11, 0.2),
    0 0 14px rgba(245, 158, 11, 0.45);
}

.steps.active .circle .lucide {
  color: white;
  opacity: 1;
}

.line.active {
  background: #f59e0b;
}

/* Pending State */
.steps:not(.completed):not(.active) .circle {
  color: #cbd5e1;
}

/* shipment journey wrapper */
.shipment-journey-wrapper {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

/* LEFT PANEL */
.shipment-history {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  width: 25%;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* HEADER */
.shipment-history-header {
  background: #e2e8f0;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}

.shipment-history h2 {
  color: #1e293b;
  font-size: 120%;
  text-transform: capitalize;
}

/* LIST SCROLL AREA */
.shipment-history-list {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: none;
}

.shipment-history-list::-webkit-scrollbar {
  display: none;
}

/* each item — line now lives here, per-item, so it always matches content height */
.shipment-history-item {
  position: relative;
  padding-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* connector line: draws from this dot down to the next one */
.shipment-history-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 8px; /* centers on the 18px dot: (18px / 2) - (2px line / 2) */
  top: 23px; /* starts right below the dot */
  width: 2px;
  bottom: 0;
  background: #ddd;
}

/* the circle */
.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4da3ff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: 5px;
  box-shadow: 0 0 0 4px #eaf3ff;
}

/* TIMELINE TEXT AREA */
.history-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0; /* lets long location/note text wrap instead of overflowing */
}

.history-content p {
  margin: 0;
}

.history-date {
  font-size: 80%;
  color: #888;
}

.history-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 12px;
}

.history-status.status-blue {
  background-color: #dbeafe;
  color: #1e40af;
}

.history-status.status-red {
  background-color: #fee2e2;
  color: #dc2626;
}

.history-status.status-orange {
  background-color: #fed7aa;
  color: #d97706;
}

.history-location {
  font-size: 85%;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 4px;
}

.history-location .lucide {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.history-note {
  font-size: 90%;
  color: var(--muted-text);
}
/* parcel info */
.parcel-info {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  width: 75%;
}
.parcel-info-header {
  background: #e2e8f0;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
}
.parcel-info-header h2 {
  color: #1e293b;
  font-size: 120%;
  text-transform: capitalize;
}
.parcel-info-wrapper {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
}
.parcel-media {
  width: 30%;
  height: 300px;
}
.parcel-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.parcel-content {
  width: 70%;
}
.parcel-info-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.parcel-info-item {
  width: 100%;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.item-title {
  text-transform: capitalize;
  font-size: 90%;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.item-title .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
  opacity: 0.9;
  color: #4da3ff;
  position: relative;
  top: 1px;
}
.item-value {
  color: var(--sec-text);
  text-transform: capitalize;
}
.parcel-action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn-print {
  color: white;
  background-color: #1d4ed8;
  padding: 8px 15px;
  border: none;
  border-radius: 0.5rem;
  text-transform: capitalize;
  font-size: 85%;
  cursor: pointer;
}
.btns .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
  opacity: 0.85;
  margin-right: 6px;
  position: relative;
  top: 1px;
}
.btn-pay {
  color: white;
  background-color: rgb(33, 143, 33);
  padding: 8px 15px;
  border: none;
  border-radius: 0.5rem;
  text-transform: capitalize;
  font-size: 85%;
  cursor: pointer;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: #f8fbff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
}

/* Circle */

.loader-circle {
  width: 110px;
  height: 110px;
  margin: auto;
  border-radius: 50%;
  /* padding: 6px; */
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa, #2563eb);
  animation: glow 2.5s ease-in-out infinite;
  overflow: hidden;
}

.loader-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #f8fbff;
  /* padding: 20px; */
  opacity: 0.1;
  animation: breathe 3s ease-in-out infinite;
}

/* Heading */

.loader-container h1 {
  margin-top: 20px;
  margin-bottom: 1px;
  font-size: 32px;
  font-weight: 700;
  color: #1e3a8a;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.5px;
}

.loader-container p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
}

/* Dots */

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2563eb;
  animation: bounce 1.1s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.18);
  }

  50% {
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.35);
  }
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-12px);
    opacity: 1;
  }
}
/* ---------------------------- */
/* payment process page */
/* hero test */
.hero {
  position: relative;
  min-height: 250px;
  background: linear-gradient(135deg, #1e40ff, #312e81);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
}
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #e6f0ff;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.25),
    rgba(16, 185, 129, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: fit-content;
  margin-bottom: 1rem;
}

.security-badge .lucide {
  width: 15px;
  height: 15px;
  color: #60a5fa;
}
.main-content {
  background: #07162f;
  min-height: 100vh;
  padding: 50px;
}
.hero-content h1 {
  margin-bottom: 0.2rem;
}
/* payment step */

/* payment stepper */
.payment-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  justify-self: center;
  text-align: center;
}

.step {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* step circle */
.step-circle {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #1f2937; /* was var(--shadow / bg circle) */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 16px;
  align-self: center;
  color: #ffffff;
}

/* connector line */
.step-line {
  width: 15%;
  height: 3px;
  background-color: #94a3b8; /* var(--pri-text) */
}

/* step text */
.step p {
  color: #f8fafc; /* var(--text-primary) */
  font-size: 110%;
  font-weight: 500;
  text-transform: capitalize;
}

.step span {
  font-size: 90%;
  margin-top: 0.3rem;
  color: #cbd5e1;
}

/* active step circle */
.step.active .step-circle {
  background-color: #3b82f6;
}

/* active line */
.step-line.active {
  background-color: #3b82f6;
}
/* confirmation page */
.confirmation-content {
  width: 60%;
  margin: 2rem auto 0;
  font-size: 85%;
}

.confirmation-status {
  display: flex;
  padding: 0.6rem 0;
  align-items: center;
  gap: 10px;
  background-color: #122a29;
  border-left: 5px solid #22c55e;
  color: #86efac;
}

.status-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-circle {
  width: 20px;
  height: 20px;
  color: #22c55e;
  fill: #22c55e;
}

.check-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  color: #0b1120;
  stroke-width: 3;
}

.transaction-details {
  background-color: #1f2937;
  border-radius: 10px;
  border: 1px solid #243041;
  margin-top: 1.5rem;
}

.transaction-detail-header {
  padding: 0.7rem;
  color: #f8fafc;
  font-size: 100%;
  border-bottom: 1px solid #243041;
}

.transaction-content {
  padding: 1rem;
}

.transaction-row {
  display: flex;
  margin-top: 1rem;
}

.transaction-title {
  font-size: 100%;
  text-transform: capitalize;
  color: #94a3b8;
}

.transaction-text {
  font-size: 120%;
  color: #cbd5e1;
  margin-top: 0.2rem;
}

.transaction-row div:first-child {
  width: 50%;
}

.transaction-row div:last-child {
  width: 50%;
  justify-content: flex-start;
}

.info {
  background-color: #1f2937;
  border-radius: 10px;
  border: 1px solid #243041;
  margin-top: 1.5rem;
}

.info-header {
  padding: 0.7rem;
  color: #f8fafc;
  font-size: 100%;
  border-bottom: 1px solid #243041;
}

.info-content {
  padding: 1rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.info-number {
  background-color: #259bf6;
  color: white;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  font-weight: 600;
  font-size: 105%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-title {
  font-size: 100%;
  text-transform: capitalize;
  color: white;
}

.info-text {
  font-size: 100%;
  color: #cbd5e1;
  margin-top: 0.2rem;
}

.info-footer {
  padding: 0.7rem;
  color: #475569;
  font-size: 90%;
  border-top: 1px solid #243041;
}

.blue-text {
  color: #259bf6;
}

.confirmation-action-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.confirmation-action-btns a {
  text-transform: capitalize;
  font-size: 95%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.confirmation-action-btns a .lucide {
  height: 18px;
  width: 18px;
}

.confirmation-action-btns a:first-child {
  background-color: #259bf6;
  color: white;
}

.confirmation-action-btns a:last-child {
  background-color: #243041;
  color: #cbd5e1;
}

/* payment clearance page */
.shipment-payment-page {
  max-width: 1200px;
  margin: 0 auto;
}
.clearance-payment-layout {
  display: flex;
  gap: 24px;
  margin-top: 2rem;
}

/* LEFT PANEL */
.invoice-panel {
  flex: 7;
  background: #111827;
  border-radius: 16px;
  border: 1px solid #243041;
}

/* HEADER */
.invoice-panel-header {
  background-color: #161d39;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  color: #f8fafc;
}

/* SECURE BADGE */
.payment-secure-badge {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(5, 150, 105, 0.1)
  );
  color: #22c55e;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.payment-secure-badge .lucide {
  height: 16px;
  width: 16px;
  stroke-width: 1.6;
}

/* CONTENT */
.invoice-panel-content {
  padding: 24px;
}

/* OVERVIEW BOX */
.payment-overview-container {
  margin-top: 2rem;
  padding: 24px;
  background-color: #161d39;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid #1d4ed8;
  margin-bottom: 2rem;
}

/* LABELS */
.payment-label {
  color: #259bf6;
  font-size: 90%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.payment-title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.payment-tracking {
  font-size: 85%;
  color: #475569;
}

/* AMOUNT */
.amount-box h3 {
  font-size: 90%;
  font-weight: 500;
  color: #94a3b8;
}

.amount-box h1 {
  font-size: 36px;
  color: #f8fafc;
}

/* SMALL TEXT */
.small-text {
  font-size: 12px;
  color: #94a3b8;
}

/* METHOD TITLE */
.payment-method-title {
  color: #f8fafc;
  text-transform: capitalize;
  margin-bottom: 0.8rem;
}

/* PAYMENT METHOD BOX */
.payment-methods div {
  text-transform: capitalize;
  background-color: #161d39;
  padding: 14px 22px;
  border: 1px solid #1d4ed8;
  border-radius: 10px;
  font-size: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
}

/* ICON */
.payment-methods .lucide {
  height: 18px;
  width: 18px;
}

/* RADIO */
.payment-methods input {
  width: 20px;
  height: 20px;
  accent-color: #3b82f6;
  cursor: pointer;
  background-color: #0b1120;
}
.payment-methods div {
  color: white;
}

/* BUTTON */
.confirm-btn {
  width: 100%;
  background-color: #259bf6;
  padding: 0.6rem 0;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 90%;
}

.confirm-btn .lucide {
  height: 16px;
  width: 16px;
  margin-left: 8px;
}

/* NOTE */
.note {
  font-size: 85%;
  color: #475569;
  text-align: center;
  margin-top: 0.7rem;
}

/* RIGHT PANEL */
.info-panel {
  flex: 3;
  background: #111827;
  border-radius: 16px;
  border: 1px solid #243041;
  overflow: hidden;
}

/* HEADER */
.info-panel-header {
  background: #1d4ed8;
  padding: 24px;
  color: #ffffff;
  text-transform: capitalize;
}

/* CONTENT */
.info-panel-content {
  padding: 1rem;
}

/* FAQ SECTION */
.payment-faqs {
  border-bottom: 1px solid #243041;
}

.payment-faq-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

/* ICON BOX */
.faq-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon .lucide {
  width: 20px;
  height: 20px;
}

/* CONTENT */
.faq-content {
  flex: 1;
}

.faq-content h4 {
  margin-bottom: 5px;
  font-size: 95%;
  color: #f8fafc;
}

.faq-content p {
  color: #475569;
  line-height: 1.5;
  font-size: 90%;
}

/* SUPPORT */
.support-box h4 {
  margin-top: 0.5rem;
  font-size: 90%;
  color: #f8fafc;
}

.support-box p {
  font-size: 85%;
  color: #259bf6;
  margin-top: 0.4rem;
}

/* ==================================
   PAYMENT DETAIL PAGE
================================== */

.shipment-detail-page {
  max-width: 1200px;
  margin: 0 auto;
}
.payment-detail-layout {
  display: flex;
  gap: 24px;
  margin-top: 2rem;
}

/* MAIN PANEL */
.payment-detail-panel {
  flex: 7;
  background: #111827;
  border-radius: 16px;
  border: 1px solid #243041;
}

/* HEADER */
.payment-detail-header {
  background-color: #161d39;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  color: #ffffff;
}

/* SECURE BADGE */
.payment-detail-secure-badge {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(5, 150, 105, 0.1)
  );

  color: #22c55e;
  padding: 5px 10px;
  border-radius: 20px;

  display: flex;
  align-items: center;
  gap: 4px;
}

.payment-detail-secure-badge .lucide {
  height: 16px;
  width: 16px;
  stroke-width: 1.6;
}

/* CONTENT */
.payment-detail-content {
  padding: 24px;
}

/* SUMMARY BOX */
.payment-detail-summary {
  margin-top: 2rem;
  padding: 24px;
  background-color: #161d39;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid #1d4ed8;
  margin-bottom: 2rem;
}

/* LEFT INFO */
.payment-detail-label {
  color: #259bf6;
  font-size: 90%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.payment-detail-title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.payment-detail-tracking {
  font-size: 85%;
  color: #475569;
}

/* AMOUNT */
.payment-detail-amount-box h3 {
  font-size: 90%;
  font-weight: 500;
  color: #94a3b8;
}

.payment-detail-amount-box h1 {
  font-size: 36px;
  color: #f8fafc;
}

/* ==================================
   CRYPTO SELECTION
================================== */

.crypto-selection {
  background: #1f2937;
  border: 1px solid #243041;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}

.crypto-selection h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* CRYPTO OPTION */
.crypto-option {
  display: flex;
  align-items: center;
  gap: 14px;

  background: #111827;
  border: 1px solid #1d4ed8;
  border-radius: 16px;

  padding: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.crypto-option:hover {
  border-color: #26a17b;
  transform: translateY(-2px);
}

.crypto-option.active {
  border-color: #26a17b;
  background: rgba(38, 161, 123, 0.08);
}

/* RADIO */
.crypto-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #26a17b;
  cursor: pointer;
}

/* ICON */
.crypto-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(38, 161, 123, 0.1);
  border-radius: 12px;
}

.crypto-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* TEXT */
.crypto-info {
  display: flex;
  flex-direction: column;
}

.crypto-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.crypto-info small {
  color: #475569;
  margin-top: 3px;
  font-size: 0.8rem;
}

/* ==================================
   PAYMENT INSTRUCTIONS
================================== */

.payment-instruction-header h2 {
  font-size: 110%;
  color: #f8fafc;
}

.payment-instruction-header p {
  font-size: 90%;
  color: #64748b;
  margin-bottom: 1rem;
}

/* WALLET BOX */
.wallet-details {
  background: #161d39;
  border: 1px solid #1d4ed8;
  border-radius: 18px;
  padding: 24px;
  margin-top: 1.5rem;
}

/* HEADER */
.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.wallet-header h4 {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
}

/* NETWORK BADGE */
.network-badge {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ADDRESS */
.wallet-address-box {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.wallet-address-box input {
  flex: 1;
  height: 52px;
  background: #0f172a;
  border: 1px solid #1d4ed8;
  border-radius: 12px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.wallet-address-box input:focus {
  border-color: #259bf6;
}

/* COPY BUTTON */
.wallet-address-box button {
  min-width: 120px;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: #259bf6;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: 0.25s ease;
}

.wallet-address-box button:hover {
  transform: translateY(-2px);
}

.wallet-address-box button .lucide {
  width: 16px;
  height: 16px;
}

/* WARNING */
.wallet-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 14px 16px;

  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
}

.wallet-warning .lucide {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
}

.wallet-warning p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.6;
}

.wallet-warning strong {
  color: #fbbf24;
}

/* UPLOAD SECTION */
.payment-proof {
  margin-top: 1.5rem;
}
.payment-proof h2 {
  font-size: 110%;
  color: #f8fafc;
}
.payment-upload-receipt {
  width: 100%;
  margin-top: 24px;
}

/* DROPZONE */
.upload-dropzone {
  width: 100%;
  min-height: 180px;
  border: 2px dashed rgba(148, 163, 184, 0.4);
  border-radius: 16px;
  background: #0f172a;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  cursor: pointer;

  transition: all 0.25s ease;
  padding: 20px;
}

.upload-dropzone:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
}

.upload-dropzone .lucide {
  width: 34px;
  height: 34px;
  color: #60a5fa;
  margin-bottom: 10px;
}

.upload-title {
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 600;
}

.upload-subtext {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* SIDE PANEL */
.payment-info {
  flex: 3;
  background: #111827;
  border-radius: 16px;
  border: 1px solid #243041;
  overflow: hidden;
}
.detail-info-panel {
  flex: 3;
}
.shipment-info-container {
  background: #111827;
  border-radius: 16px;
  border: 1px solid #243041;
  overflow: hidden;
  margin-bottom: 2rem;
}
.payment-faq-items .faq-icons {
  margin: 0 auto;
}
.payment-faq-items {
  background: #111827;
  border-radius: 16px;
  border: 1px solid #243041;
  overflow: hidden;
  /* margin: 1.5rem auto 0; */
  text-align: center;
  padding: 1.5rem;
}

.faq-icons {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(59, 246, 149, 0.1);
  color: rgb(47, 255, 92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icons .lucide {
  width: 30px;
  height: 30px;
}
.faq-contents {
  margin-top: 1rem;
}
.faq-contents h3 {
  color: white;
}
.faq-contents p {
  margin-top: 1rem;
  color: var(--muted-text);
}
.secure {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  justify-content: center;
}
.secure svg {
  width: 40px;
  height: 40px;
}
/* responsive */
@media (max-width: 1240px) {
  body {
    overflow-x: hidden;
  }
  section {
    padding: 50px 1rem;
  }

  .section-title {
    font-size: 180%;
  }
  .top-bar {
    padding: 0 2rem;
  }
  /* .topbar-text {
    display: none;
  } */
  .nav-bar {
    padding: 0 2rem;
  }
  .nav-link {
    display: none;
  }
  .nav-btn {
    display: none;
  } /* hamburger section */
  .hamburger-btn {
    width: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    z-index: 11;
    position: relative;
  }

  .hamburger-btn .bar {
    width: 100%;
    height: 4px;
    background: black;
    border-radius: 100px;
    transition: 0.3s ease;
  }

  /* Transform into X */
  .hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Mobile Drawer */
  .mobile-drawer {
    height: 100vh;
    max-height: 70vh;
    padding: 1rem;
    background-color: white;
    width: 100%;
    position: fixed;
    top: 14.5vh;
    left: 0;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6rem;
    /* Hidden by default */
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  /* Show drawer when active */
  .mobile-drawer.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .drawer-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .drawer-menu li {
    list-style: none;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
  }

  /* Stagger animation for menu items */
  .drawer-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .drawer-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .drawer-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .drawer-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .drawer-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .drawer-menu li a {
    text-decoration: none;
    color: black;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
  }

  .drawer-menu li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sec, #ff6b6b);
    transition: width 0.3s ease;
  }

  .drawer-menu li a:hover::after {
    width: 100%;
  }

  .drawer-menu li:hover {
    color: var(--sec, #ff6b6b);
  }

  .drawer-footer {
    margin-top: auto;
    padding: 1rem 0;
    animation: slideIn 0.5s ease-out 0.6s forwards;
    opacity: 0;
  }

  .mobile-btn {
    width: 100%;
    height: 50px;
    background-color: var(--pri, #007bff);
    text-transform: capitalize;
    border-radius: 10px;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .mobile-btn:active {
    transform: translateY(0);
  }

  /* Accessibility - Close drawer when main content is clicked */
  body.menu-open {
    overflow: hidden;
  }
  /* hero */
  .hero-text {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-action {
    justify-content: center;
  }
  .stat-container {
    justify-content: center;
  }

  .process-container {
    grid-template-columns: repeat(4, 1fr);
  }
  /* .service-container {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 300px;
  } */

  .track-wrapper p {
    width: 100%;
  }
  .tracking-form {
    width: 100%;
  }
  .label-text {
    width: 100%;
  }
  .about-img {
    position: relative;
    bottom: -5px;
  }
  .about-content h2 {
    font-size: 200%;
    width: 100%;
  }
  .about-desc {
    width: 100%;
  }
  /* cta */
  .cta-section {
    padding: 0 1rem;
  }
  .cta-hero {
    height: 140%;
  }
  .cta-title {
    font-size: 250%;
  }
  .watermark-img {
    width: 70%;
  }
  .colored-cta-title {
    font-size: 130%;
  }
  .cta-action-btn {
    margin-bottom: 1.5rem;
  }
  .footer-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  /* service page */
  .services-intro-heading {
    color: black;
    font-size: 180%;
    margin-bottom: 0.5rem;
  }
  .services-intro-description {
    font-size: 110%;
    width: 100%;
    margin: 0 auto;
  }
  .service-items {
    height: auto;
  }
  .service-tags {
    display: flex;
    gap: 0.5rem;
  }
  /*  About Page  */
  .about-container {
    flex-direction: column;
  }
  .about-split-left {
    width: 100%;
    padding: 1rem;
  }
  .about-page-title,
  .about-page-subtitle {
    text-align: center;
  }
  .about-page-actions {
    justify-content: center;
  }

  .safety-section {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
  /* track page */
  .track-split {
    flex-direction: column;
  }
  .track-split-text {
    width: 100%;
  }
  .track-split-media {
    width: 100%;
  }
  .tracking-intro-description {
    font-size: 110%;
    width: 100%;
    margin: 0 auto;
  }

  /* contact page */
  .contact-intro-description {
    font-size: 110%;
    width: 100%;
    margin: 0 auto;
  }

  .contact-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-split-left {
    width: 100%;
  }
  .contact-info-title,
  .contact-info-text {
    text-align: center;
  }
  .contact-split-right {
    width: 100%;
  }
  .page-subtitle {
    text-align: center;
    width: 80%;
  }
}
@media (max-width: 1000px) {
  .about-img {
    position: absolute;
    bottom: 0;
  }
  .watermark-img {
    width: 70%;
  }
}
/*  */
@media (max-width: 950px) {
  .topbar-text {
    display: none;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  .foundation-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
  }
  .watermark-img {
    width: 65%;
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  section {
    padding: 40px 1rem;
  }
  .topbar-text {
    display: none;
  }
  .email-container span {
    font-size: 80%;
  }
  .support-container span {
    font-size: 80%;
  }
  .watermark-img {
    width: 70%;
  }
  .top-bar {
    padding: 0 1rem;
  }
  .nav-bar {
    padding: 0 1rem;
  }
  .mobile-drawer {
    top: 15vh;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }
  .hero-container .hero-content h1 {
    font-size: 250%;
  }
  .hero-container .hero-content p {
    font-size: 100%;
    width: 90%;
  }
  .stat-card {
    width: 45%;
    padding: 0.8rem;
  }
  .process-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-container {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 300px;
  }
  .tall {
    order: 999;
  }
  .track-section {
    display: flex;
    align-items: center;
  }
  .about-wrapper {
    flex-direction: column;
  }
  .about-content,
  .about-media {
    width: 100%;
  }
  .about-desc {
    width: 100%;
  }
  .about-content h2 {
    width: 100%;
  }
  .about-img {
    position: relative;
    bottom: 0;
  }
  .testimonial-wrapper h2 {
    width: 100%;
  }
  .testimonial-section .swiper-wrapper {
    gap: 0 !important;
  }
  .testimonial-section .swiper-slide {
    flex: 0 0 100%;
    width: 100% !important;
  }
  .testimonial-section .swiper-button-prev,
  .testimonial-section .swiper-button-next {
    display: none !important;
  }
  .testimonial-card {
    width: 90%;
    justify-self: center;
  }
  .cta-title {
    font-size: 240%;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .quick-links,
  .contact-scetion,
  .brand-section {
    width: 100%;
  }
  .after-footer {
    flex-direction: column;
    gap: 1rem;
  }
  /* Trcaking Page */
  .page-title {
    text-align: center;
  }
  .tracking-header {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto 0.5rem;
  }
  .tracking-status-wrapper {
    width: 100%;
  }
  .tracking-status {
    width: 100%;
  }
  .shipment-overview {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .sender-info,
  .receiver-info,
  .shipment-details,
  .tracking-insights {
    border: 1px solid var(--sec);
    padding: 1rem;
    border-radius: 1rem;
    background-color: #f6faff;
  }
  .address {
    display: none;
  }
  .shipment-journey-wrapper {
    flex-direction: column;
  }

  .shipment-history {
    width: 100%;
    max-height: none;
  }

  .shipment-history-list {
    max-height: 350px; /* keep it scrollable instead of pushing page height too tall */
  }

  .history-date {
    font-size: 75%;
  }

  .history-note,
  .history-location {
    font-size: 85%;
  }
  .parcel-info {
    width: 100%;
  }
  .parcel-info-wrapper {
    flex-direction: column;
    padding: 0.5rem;
  }
  .parcel-media {
    width: 100%;
  }
  .parcel-content {
    width: 100%;
  }
  .parcel-info-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .parcel-action-buttons {
    justify-content: center;
    margin-top: 2rem;
  }
  .circle {
    box-sizing: border-box;
  }

  .shipment-stepper {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    align-items: flex-start;
  }

  .steps {
    flex-direction: row;
    width: 100%;
    text-align: left;
    align-items: center;
    gap: 14px;
    margin: 0;
  }

  .steps p {
    font-size: 82%;
    margin: 0;
    line-height: 1.3;
  }

  .circle {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin: 0;
  }

  .circle .lucide {
    height: 20px;
    width: 20px;
  }

  /* vertical connector, centered under the circle */
  .line {
    width: 4px;
    height: 28px;
    min-width: 4px;
    margin: 2px 0 2px 23px; /* 23px = half of 48px circle minus half of 4px line */
    background: #e5e7eb;
    flex: none;
  }

  .line.completed {
    background: #4da3ff;
  }

  .line.active {
    background: #f59e0b;
  }

  /* Payment Gateway */
  .main-content {
    padding: 0 1rem;
  }
  .payment-stepper {
    width: 100%;
  }
  .step p {
    font-size: 85%;
  }
  .step span {
    font-size: 80%;
  }
  .step-circle {
    height: 35px;
    width: 35px;
  }
  .clearance-payment-layout {
    flex-direction: column;
  }
  .invoice-panel {
    width: 100%;
  }
  .invoice-panel-header {
    padding: 16px;
  }
  .invoice-panel-header h2 {
    font-size: 110%;
  }
  .payment-overview-container {
    flex-direction: column;
  }
  .payment-detail-summary {
    flex-direction: column;
    gap: 0.5rem;
  }
  .amount-box {
    border-top: 1px solid #475569;
    padding-top: 1rem;
  }
  /* payment details page  */
  .payment-detail-layout {
    flex-direction: column;
  }
  .payment-detail-panel {
    width: 100%;
  }
  .payment-detail-header {
    padding: 16px;
  }
  .payment-detail-header h2 {
    font-size: 110%;
  }
  .payment-detail-amount-box {
    border-top: 1px solid #475569;
    padding-top: 1rem;
    display: block;
  }
  .wallet-details {
    padding: 1rem;
  }
  .wallet-address-box {
    gap: 8px;
  }

  .wallet-address-box input {
    flex: 1;
    width: auto;
  }

  .wallet-address-box button {
    min-width: 50px;
    width: 50px;
    height: 52px;
    padding: 0;
  }

  .wallet-address-box button span {
    display: none;
  }
  /* confirmation */
  .confirmation-content {
    width: 100%;
    margin: 1rem auto 0;
    font-size: 90%;
  }
  .confirmation-action-btns {
    font-size: 85%;
    padding-bottom: 2rem;
  }
  .transaction-detail-header {
    font-size: 95%;
  }
  .info-header {
    font-size: 95%;
  }
  .payment-proof {
    margin-top: 2rem;
  }
  .payment-proof h2 {
    font-size: 120%;
  }
  .tracking-benefits {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .service-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  .foundation-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
  }
}
