:root{
  --max-width: 1100px;
  --accent-blue: #233f93;
  --accent-green: #3b7a2e;
  --muted: #6b7280;
  --container-pad: 24px;
  --shadow: 0 6px 18px rgba(35,63,147,0.08);
  --overlay: rgba(13,26,70,0.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#1b2540;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  line-height:1.45;
}

/* container */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding: var(--container-pad);
}

/* Header */
.site-header{
  border-bottom:1px solid #f1f1f1;
  background:#fff;
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center; width: var(--max-width);
  margin: auto;
  justify-content:space-between; vertical-align: middle;
  gap: 20px;
  padding: 18px 0;
}

.logo{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-img{ height:50px; width:auto; display:block; margin-top: 0px;}

/* nav */
.main-nav a{
  margin-left:18px;
  text-decoration:none;
  color:var(--accent-blue);
  font-weight:600;
  font-size:14px;
}

.main-nav a:hover{
  color: var(--accent-green);
}

/* Hero */
.hero{
  padding:28px 0 28px;
  background: #FAFFF3;
}
.hero-inner{
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:space-between;
}
.hero-left{ flex:0 0 46%; }
.big-logo-img{ width:420px; max-width:100%; height:auto; display:flex; }

/* hero right */
.hero-right{ flex:0 0 50%; text-align:left; }
.hero-right h1{
  color:var(--accent-blue);
  font-size:28px;
  margin:0px;
}

.ln-brk { width: auto; height: 4px; max-width: 280px; margin: 6px 0;
  background:linear-gradient(90deg, #5A7931, #FAFFF3);}
.lead{ color:#4d5566; margin:0 0 18px; font-size:14px; }
.hero-ctas{ margin-right:12px; align-items: center;}

/* Buttons */
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:28px;
  text-decoration:none; 
  font-weight:500;
  font-size:14px;
  cursor:pointer;
  border:0;
}
.btn-primary { background:#4B7414; font-size:14px; color:  #283B91;}
.btn-ghost{ background:#4B7414; font-size:14px}

.btn-primary, .btn-ghost { margin-right:10px; height: auto; padding: 8px 18px;
  text-align:center; text-decoration: none;
  border:0; border-radius: 30px; color:#fff; box-shadow:none;}

.btnghost1{
  background:transparent;
  color:var(--accent-green);
  border:2px solid rgba(59,122,46,0.12);
  background:linear-gradient(90deg,#e8f4ea,#f6fbf8);
}

/* Features row */
.features{ padding:30px 0; border-top:6px solid rgba(59,122,46,0.05); border-bottom:1px solid #f2f4f6; }
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.feature h3{ color:var(--accent-blue); margin:0 0 8px; font-size:16px; font-weight:700; }
.feature ul{ margin:0; padding-left:16px; color:#495057; font-size:13px }
.track-box{ display:flex; gap:8px; margin-top:8px; }
.track-box input{ flex:1; padding:10px 12px; border-radius:6px; border:1px solid #e6e9ef; }
.btn-track{ background:linear-gradient(90deg, #283B91, #5A7931); color:#fff; border:none; padding:10px 14px; border-radius:6px; }

/* tracking.css - styles for the tracking output matching the provided layout */
body {
    font-family: roboto;
}
/* General wrapper */

.btn-primary { background:#233f93; color:#fff; }

/* Tracking result container */
.track-result { margin-top:40px; }

/* Header: consignment + origin/destination bars + logo */

.track-left {
   display:flex;
  flex-direction: row;
  gap:18px;
  margin-bottom:12px;
  align-items:center;
}

.track-right {
  background-color: none;
  flex: 0 1 180px;
  width: auto;
  margin-right: auto; margin-left: 30px;
}

.track-logo {

  display: inline;
}

/* Consignment block */
.consign-row {
  width: auto; background-color:none;
  text-align: center;
  margin-right: auto; margin-left: auto;
  gap:18px;

}
.consign-label { color:#333; font-weight:600; min-width:120px; }
.consign-no {
  font-size:24px;
  font-weight:800;
  color:#111;
  margin-top:6px;
}

/* origin/destination bars (centered) */
.location-bars {
  margin: 6px auto 6px auto;
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items: center; 
}
.bar {
  display:inline-block;
  padding:8px 18px;
  color:#fff;
  font-weight:700;
  border-radius:4px;
  min-width:360px;
  text-align:center;
}
.bar.origin { background:#233f93; }  /* blue */
.bar.destination { background:#3b7a2e; } /* green */

/* Table header (fixed three columns) */
.track-table {
  width:100%;
  border-collapse:collapse;
  margin-bottom:10px;
}
.track-table thead th {
  text-align: center;
  border:1px solid #ffffff;
  background:#555959;
  color:#fff;
  padding:10px 12px;
  font-weight:700;
  font-size:14px;
}

.track-table colgroup col:nth-child(1) { width:24%; }
.track-table colgroup col:nth-child(2) { width:24%; }
.track-table colgroup col:nth-child(3) { width:52%; }

/* Group box styling */
.group-box {
  border:2px solid #2b4aa0; /* blue-ish border */
  border-radius:4px;
  padding:8px 0px 0px 0px;
  margin:12px 0;
  background:#fff;
}

/* Status title (appears at top-left within the group) */
.group-status-title {
  color:#233f93;
  font-weight:700;
  margin: 2px 0px 4px 8px;
  font-size:15px;
  text-align: left;
}

/* Items grid: ensure columns align with header */
.group-items {
  display:table;
  table-layout:fixed;
  width:100%;
  border-collapse:collapse;
}
.group-items .row {
  display:table-row;
}
.cell {
  display:table-cell;
  vertical-align:top;
  padding:10px 12px;
  border-bottom: none;
}
.cell.date { width:24%; color:#6b7280; font-style:italic; font-size:13px; text-align: left; }
.cell.place { width:24%; font-weight:600; color:#111; text-align: center;font-size:14px;}
.cell.details { width:52%; color:#333; text-align: center; font-size:14px;}

/* Spacing between item rows */
.group-items .row + .row .cell { padding-top:18px; }

/* Small separators between groups */
.group-box + .group-box { margin-top:18px; }

/* Messages & loading */
.track-loading { font-style:italic; color:#6b7280; padding:10px; }
.track-message.error { color:#b22727; font-weight:700; padding:10px; }

/* Responsive tweaks */
@media (max-width:820px) {
  .bar { min-width:260px; }
  .track-right { display:none; } /* hide logo on very small screens to keep alignment */
  .consign-label { min-width:90px; }
}

/* Reviews */
.reviews{ padding:12px 0; background:#fbfbff; }
.section-title{ text-align:center; color:var(--accent-blue); margin:0 0 18px; font-size:18px; font-weight:700; }
.review-shell{ display:flex; align-items:center; justify-content:center; gap:12px; }
.review-card{ background:linear-gradient(90deg, #edf1ff, #f8fff0);; border-radius:12px; border: #0f411b 12px; padding:20px 28px; width:66%; box-shadow:0 8px 24px rgba(15,38,100,0.08); display:flex; flex-direction:column; align-items:center; text-align:center; }
.review-card blockquote{ margin:8px 0 0; font-style:normal; color: var(--accent-blue) }
.review-route{ background:#fff; padding:6px 12px; border-radius:6px; color:var(--accent-blue); font-weight:600; margin-bottom:8px; }
.review-shell button{ background: none; color: #226933; font-weight: 600; border: none; cursor: pointer; font-size: 20pt;}

/* Services intro & final */
.services-intro{ padding:28px 0; text-align:center; }
.services-desc{ color:#6b7280; max-width:780px; margin:8px auto 0; }
.srv-typ{display: flex; gap: 20px; flex-direction: row; align-items: center; margin: auto; justify-content: center; width: var(--max-width);}
.srv-typ a1{ text-align: center; text-decoration: none; font-weight: 500; color: white; width: fit-content; max-width: 200px; height: 120px;
  border-radius: 20px; margin-bottom: 0; padding:10px 20px 10px 20px ; background:linear-gradient(90deg, #283B91, #5A7931);}
.srv-typ a{ text-align: center; text-decoration: none; font-weight: 600; color: white; width: fit-content; max-width: 200px; height: 140px;
  border-radius: 20px; margin-bottom: 0; padding:18px 20px ; background:linear-gradient(90deg, #283B91, #5A7931);}
.srv-typ a:hover{background:linear-gradient(90deg, #121e54, #273b0d);}
  .final-cta{ padding:42px 0; text-align:center; background:#fff; padding:0px; }
.final-cta h3{ color:var(--accent-blue); margin-bottom:0px;}
.final-cta p{ color:var(--muted); margin:0 0 16px; max-width:760px; margin-left:auto; margin-right:auto; }

/* Footer */
.site-footer{ border-top:1px solid #eef1f5; padding:18px 0; background:#fff; }
.footer-inner{ display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; color:#6b7280; }

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:120;
}
.modal.open{ display:flex; }
.modal-overlay{ position:absolute; inset:0; background:var(--overlay); }
.modal-panel{
  position:relative;
  z-index:2;
  width:96%;
  max-width:820px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 14px 40px rgba(8,23,70,0.35);
  padding:18px;
}
.modal-close{ position:absolute; right:12px; top:8px; border:0; background:transparent; font-size:18px; cursor:pointer; }

/* Embedded form wrapper */
.modal-embed .modal-iframe { width:100%; height:680px; border:0; border-radius:8px; }
@media (max-width:720px) { .modal-embed .modal-iframe { height:760px; } }

/* Responsive */
@media (max-width:980px){
  .hero-inner{ flex-direction:column; align-items:flex-start }
  .hero-left,.hero-right{ flex:1 1 100% }
  .feature-grid{ grid-template-columns:1fr; }
  .review-card{ width:90% }
  .main-nav{ display:none }
  .big-logo-img{ width:320px }
}
@media (max-width:520px){
  .big-logo-img{ width:260px }
  .hero-right h1{ font-size:22px }
  .logo-img{ height:40px }
  .btn{ padding:10px 14px; font-size:13px }
}

footer {
    padding-top: 20px;
    display: flex; flex-direction: row; align-items: center; gap: 220px;
    justify-content: space-between; max-width: fit-content; margin: auto;
}

.instagram {
    height: 20px; width: 20px;
    margin: 10px 3px 10px 10px;
}

.facebook {
    height: 20px; width: 20px;
    margin: 10px 15px 10px 4px;
}
.cont_t {

font-weight: 400; font-size: 12px;
}

.legal-text {
    text-align: center;
    font-weight: 400; font-size: 12px}