/* ------------------------------------------------------------------
   XPRESS CARGO – GLOBAL LOGISTICS THEME
   Palette based on logo:
   Blue  : #0055a4
   Red   : #ff1744
   Navy  : #041327
------------------------------------------------------------------ */

:root {
  --xc-primary: #0055a4;
  --xc-primary-soft: #e3f0ff;
  --xc-primary-dark: #00356a;

  --xc-accent: #ff1744;
  --xc-accent-soft: #ffe5eb;

  --xc-bg: #f4f7fb;
  --xc-surface: #ffffff;

  --xc-text: #141927;
  --xc-muted: #7a8498;

  --xc-border: #dde3f0;
  --xc-border-strong: #c4ccdd;

  --xc-radius-xs: 4px;
  --xc-radius-sm: 8px;
  --xc-radius-md: 12px;
  --xc-radius-lg: 18px;
  --xc-radius-pill: 999px;

  --xc-shadow-soft: 0 10px 24px rgba(4, 19, 39, 0.06);
  --xc-shadow-strong: 0 20px 40px rgba(4, 19, 39, 0.12);

  --xc-transition-fast: 0.18s ease-out;
  --xc-transition-med: 0.25s ease;

  --xc-header-height: 76px;
}

/* ------------------------------------------------------------------
   Global reset / basics
------------------------------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: SF Pro Display, "SF Pro Icons", -apple-system,
    BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 15px;
  line-height: 1.6;
  color: var(--xc-text);
  background: radial-gradient(circle at top left, #e7f1ff 0, #f4f7fb 40%, #ffffff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--xc-primary);
  text-decoration: none;
  transition: color var(--xc-transition-fast), opacity var(--xc-transition-fast);
}

/* a:hover,
a:focus {
  color: var(--xc-accent);
  text-decoration: none;
} */

p {
  margin: 0 0 0.75rem;
  color: var(--xc-muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6rem;
  font-weight: 600;
  color: var(--xc-text);
  letter-spacing: 0.01em;
}

h1 { font-size: 2.35rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

::selection {
  background: var(--xc-accent);
  color: #fff;
}

/* ------------------------------------------------------------------
   Layout helpers
------------------------------------------------------------------ */

.section-padding {
  padding: 4.5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-title {
  margin-bottom: 2.25rem;
  text-align: left;
}

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

.section-title span.kicker {
  display: inline-block;
  padding: 0.14rem 0.65rem;
  border-radius: var(--xc-radius-pill);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--xc-primary);
  background: rgba(0, 85, 164, 0.08);
}

.section-title h2 {
  margin-top: 0.4rem;
}

.section-title p {
  max-width: 520px;
}

/* Simple card utility */
.xc-card {
  background: var(--xc-surface);
  border-radius: var(--xc-radius-lg);
  border: 1px solid rgba(221, 227, 240, 0.7);
  box-shadow: var(--xc-shadow-soft);
  padding: 1.5rem 1.75rem;
}

/* ------------------------------------------------------------------
   Header & Navigation
------------------------------------------------------------------ */

.header-area {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(244, 247, 251, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 18px rgba(4, 19, 39, 0.06);
}

.main-header-area {
  height: var(--xc-header-height);
  display: flex;
  align-items: center;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 34px;
  width: auto;
}

.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.main-menu {
  display: flex;
  gap: 1.75rem;
}

.main-menu .nav-link {
  position: relative;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--xc-muted);
}

.main-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--xc-primary), var(--xc-accent));
  transition: width var(--xc-transition-med);
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus,
.main-menu .nav-link.active {
  color: var(--xc-text);
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border-radius: var(--xc-radius-sm);
  border: 1px solid var(--xc-border);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
  width: 1.4rem;
  height: 1.4rem;
}

/* Header right CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta .mini-pill {
  font-size: 0.78rem;
  padding: 0.16rem 0.65rem;
  border-radius: 999px;
  background: var(--xc-primary-soft);
  color: var(--xc-primary-dark);
}

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */

.btn,
button,
input[type="submit"] {
  font-family: inherit;
}



.btn_1 {
  background-image: linear-gradient(135deg, var(--xc-primary), var(--xc-accent));
  border: none;
  color: #fff !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.9rem;
  border-radius: var(--xc-radius-pill);
  box-shadow: 0 12px 30px rgba(0, 85, 164, 0.25);
  transition: transform var(--xc-transition-fast), box-shadow var(--xc-transition-fast), opacity var(--xc-transition-fast);
}


.btn_1:hover {
  transform: translateY(-1px);
  box-shadow: var(--xc-shadow-strong);
  opacity: 0.94;
}

.btn-outline-primary {
  background: transparent;
  color: var(--xc-primary);
  border-radius: var(--xc-radius-pill);
  border: 1px solid var(--xc-primary);
  padding: 0.7rem 1.7rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn-outline-primary:hover {
  background: var(--xc-primary);
  color: #fff;
}

.btn-danger {
  background: var(--xc-accent) !important;
  border-color: var(--xc-accent) !important;
}

/* Quote style toggle buttons */
button.button-q.checkers-field-quote {
  background: #fff;
  border-radius: var(--xc-radius-pill);
  border: 1px solid var(--xc-border);
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(4, 19, 39, 0.08);
  transition: all var(--xc-transition-fast);
}

button.button-q.checkers-field-quote.active {
  background: var(--xc-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(255, 23, 68, 0.35);
}

/* ------------------------------------------------------------------
   Hero / Bradcam
------------------------------------------------------------------ */

.bradcam_area {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0, #2c7fd8 0, #0055a4 40%, #041327 100%);
  color: #fff;
}

.bradcam_area .section-padding {
  padding-top: 4.8rem;
  padding-bottom: 4.2rem;
}

.bradcam_area .bradcam_text h3,
.bradcam_area .bradcam_text h1 {
  color: #fff;
}

.bradcam_area .bradcam_text p {
  color: rgba(255, 255, 255, 0.82);
}

.bradcam_area .links,
.bradcam_area .rechts {
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 0 solid transparent;
}

.bradcam_area .links {
  left: 0;
  border-top: 80px solid transparent;
  border-left: 55vw solid #fff;
}

.bradcam_area .rechts {
  right: 0;
  border-top: 80px solid transparent;
  border-right: 55vw solid #fff;
}

/* Soft orbit effect around hero globe (if used) */
.bradcam_area::before {
  content: "";
  position: absolute;
  inset: 15% 8% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.35));
  pointer-events: none;
}

/* ------------------------------------------------------------------
   Forms & inputs
------------------------------------------------------------------ */

.form-control,
select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
  border-radius: var(--xc-radius-sm);
  border: 1px solid var(--xc-border);
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  color: var(--xc-text);
  background-color: #f8f9fd;
  transition: border-color var(--xc-transition-fast),
              box-shadow var(--xc-transition-fast),
              background-color var(--xc-transition-fast);
}

.form-control:focus,
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  outline: none;
  background-color: #fff;
  border-color: var(--xc-primary);
  box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.16);
}

label {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--xc-muted);
  margin-bottom: 0.2rem;
}

/* Checkboxes / radios inline groups */
.select-check,
.select-check-quote {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
}

.checkers-field,
.checkers-field-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--xc-radius-pill);
  background: #fff;
  border: 1px solid var(--xc-border);
}

/* Change password block */
.change-password-page {
  background: var(--xc-bg);
  border-radius: var(--xc-radius-lg);
  padding: 1.8rem 2rem;
  max-width: 780px;
  margin: 3rem auto;
  box-shadow: var(--xc-shadow-soft);
}

/* ------------------------------------------------------------------
   “Get a Quote” / Logistics cards
------------------------------------------------------------------ */

.quote-card {
  background: var(--xc-surface);
  border-radius: var(--xc-radius-lg);
  padding: 1.6rem 1.8rem;
  border: 1px dashed rgba(0, 85, 164, 0.25);
  box-shadow: var(--xc-shadow-soft);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(0, 85, 164, 0.55));
  opacity: 0.25;
}

/* Status pill – use classes like .status--in-transit etc */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--xc-radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
}

.status--in-transit {
  background: rgba(0, 85, 164, 0.06);
  color: var(--xc-primary-dark);
}

.status--delivered {
  background: rgba(20, 172, 80, 0.08);
  color: #17804b;
}

.status--exception {
  background: rgba(255, 23, 68, 0.08);
  color: var(--xc-accent);
}

/* ------------------------------------------------------------------
   Services grid (cards under .services-card ul)
------------------------------------------------------------------ */

.services-card ul {
  --col-gap: 1.6rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap);
  padding-inline: calc(var(--col-gap) / 2);
  justify-content: center;
  align-items: stretch;
}

.services-card ul li {
  width: 14rem;
  display: grid;
  grid-template:
    "role"
    "icon"
    "title"
    "descr";
  align-items: start;
  gap: 0.75rem;
  padding-bottom: 2.5rem;
  text-align: center;
  background: linear-gradient(145deg, #0055a4, #041327);
  color: #fff;
  border-radius: 0 0 var(--xc-radius-lg) var(--xc-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--xc-shadow-soft);
}

.services-card ul li::after {
  content: "";
  grid-area: role;
  height: 2.1rem;
  background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
}

.services-card ul li .icon,
.services-card ul li .title,
.services-card ul li .descr {
  padding-inline: 1.1rem;
}

.services-card ul li .icon {
  margin-top: 0.4rem;
  font-size: 2.3rem;
  color: #fff;
}

.services-card ul li .title {
  font-weight: 600;
  font-size: 1.03rem;
}

.services-card ul li .descr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

/* ------------------------------------------------------------------
   Timeline (tracking history)
------------------------------------------------------------------ */

.timeline {
  display: flex;
  flex-direction: column;
  width: min(60rem, 94vw);
  margin: 3rem auto;
  gap: 1.4rem;
}

.timeline__event {
  display: flex;
  gap: 1.1rem;
  background: var(--xc-surface);
  border-radius: var(--xc-radius-md);
  border: 1px solid var(--xc-border);
  box-shadow: var(--xc-shadow-soft);
  padding: 1.1rem 1.3rem;
  position: relative;
}

.timeline__event::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--xc-primary), var(--xc-accent));
}

.timeline__event-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--xc-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--xc-primary-dark);
  flex-shrink: 0;
}

.timeline__event-content h5 {
  margin-bottom: 0.15rem;
}

.timeline__event-meta {
  font-size: 0.78rem;
  color: var(--xc-muted);
}

/* ------------------------------------------------------------------
   Login / Signup hero
------------------------------------------------------------------ */

.customer-login {
  position: relative;
  min-height: 420px;
  background: radial-gradient(circle at top left, #2b7ad1 0, #041327 55%);
  color: #fff;
}

.customer-login::before,
.customer-login::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  z-index: 0;
}

.customer-login::before {
  left: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.15), transparent 55%);
}

.customer-login::after {
  right: 0;
  background: #f3f5fb;
}

.customer-login-left {
  position: relative;
  z-index: 1;
  padding: 3.2rem 2.8rem;
  color: #fff;
}

.login-icon .fa {
  border: 12px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  line-height: 86px;
}

.customer-login-block {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2.4rem 2rem;
}

.signup-page .card-header {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--xc-primary), var(--xc-accent));
  color: #fff;
  border-radius: var(--xc-radius-sm) var(--xc-radius-sm) 0 0;
  border-bottom: none;
}

/* ------------------------------------------------------------------
   Popup (modal-like)
------------------------------------------------------------------ */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 24, 0.78);
  display: none;
  z-index: 1050;
}

.popup-inner {
  max-width: 720px;
  width: 90%;
  padding: 1.8rem 1.7rem;
  background: #ffffff;
  border-radius: var(--xc-radius-lg);
  box-shadow: var(--xc-shadow-strong);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(4, 19, 39, 0.86);
  color: #fff;
  font-size: 1.1rem;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: background var(--xc-transition-fast), transform var(--xc-transition-fast);
}

.popup-close:hover {
  background: #000;
  transform: scale(1.04);
}

/* ------------------------------------------------------------------
   Tables, images & misc
------------------------------------------------------------------ */

.pro-images-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.pro-images-section img {
  width: 210px;
  height: 150px;
  border-radius: var(--xc-radius-md);
  object-fit: cover;
  box-shadow: var(--xc-shadow-soft);
}

/* Simple table styling (e.g. manifests, rate cards) */
.table-xc {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-xc thead {
  background: #eef3ff;
}

.table-xc th,
.table-xc td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--xc-border);
}

.table-xc tbody tr:hover {
  background: rgba(0, 85, 164, 0.03);
}

/* ------------------------------------------------------------------
   Responsive tweaks
------------------------------------------------------------------ */

@media (max-width: 991.98px) {
  .main-header-area {
    height: auto;
    padding: 0.5rem 0.6rem;
  }

  .main-menu {
    flex-direction: column;
    gap: 0.9rem;
    padding: 0.9rem 0 0.8rem;
  }

  .header-cta {
    margin-top: 0.4rem;
    justify-content: flex-start;
  }

  .bradcam_area .section-padding {
    padding-top: 3.4rem;
    padding-bottom: 3.1rem;
  }

  .timeline {
    width: 100%;
    padding-inline: 0.4rem;
  }
}

@media (max-width: 575.98px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .section-padding { padding: 3rem 0; }

  .quote-card {
    padding: 1.3rem 1.25rem;
  }

  .services-card ul li {
    width: 100%;
    max-width: 18rem;
  }

  .customer-login {
    min-height: 360px;
  }

  .customer-login::before,
  .customer-login::after {
    width: 100%;
    mix-blend-mode: normal;
  }
}
@media (max-width: 678px) {
.sc-hero {
    padding: 50px 0 50px !important;
}
.sc-hero h1 {
    font-size: 30px !important;
}
.ent-hero {
    padding: 50px 0 130px !important;
}
.ent-hero h1{
   font-size: 27px !important;
}
section.partner-strip.container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    align-content: flex-start !important;
}
.timeline-step {
     padding-left: 0px !important; 
}
    .timeline-step {
         margin-left: 0px !important;
    }
    .dd-hero {
    padding: 50px 0 0px !important;
}
.dd-hero h1 {
    font-size: 30px !important;
}
main.site-wrap {
    padding: 20px ;
}

}



