/* Bonzer Logistics Pvt. Ltd. — Professional Corporate CSS */
:root {
  --navy: #0b1f3a;
  --navy-mid: #0e2a50;
  --red: #c8102e;
  --red-hover: #a50d26;
  --gold: #e8a020;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --text: #1a2340;
  --text-muted: #5a6a80;
  --border: #dde3ed;
  --shadow-card: 0 4px 24px rgba(11, 31, 58, 0.10);
  --shadow-lift: 0 12px 48px rgba(11, 31, 58, 0.18);
  --tr: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.text-muted {
  color: var(--text-muted);
  font-size: 1rem;
}

/* TOPBAR */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 2px solid var(--red);
}

.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.72);
  transition: var(--tr);
}

.topbar a:hover {
  color: var(--gold);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar i {
  color: var(--red);
  margin-right: 0.35rem;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #E6EBF3;
  border-bottom: 1px solid var(--border);
  height: 78px;
  transition: box-shadow var(--tr);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.12);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  border-radius: 6px;
  object-fit: contain;
}

.logo-text line-height {
  line-height: 1.2;
}

.logo-text strong {
  display: flex !important;
  align-items: center;
  gap: 0.18em;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text strong span {
  font-size: inherit !important;
}

/* Custom Header Logo Color Scheme from image */
.logo-b {
  color: #e31e24 !important;
  /* Bright Red */
}

.logo-onzer,
.logo-logistics {
  color: #8c202d !important;
  /* Maroon */
}

.logo-pvt {
  color: #4a2c56 !important;
  /* Deep Purple */
}

.logo-ltd {
  color: #132247 !important;
  /* Deep Navy Blue */
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: var(--tr);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--red);
  transition: var(--tr);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 1rem;
  right: 1rem;
}

.nav-btn {
  background: var(--red);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 0.75rem;
  transition: var(--tr);
}

.nav-btn:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.35);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--navy);
  padding: 0.4rem;
  background: none;
  border: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg-unsplash.jpg');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.15;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--navy) 40%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--red);
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 2rem 5rem 3.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.4);
  color: #ff8a99;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.gold {
  color: var(--gold);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-hero-primary {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--tr);
}

.btn-hero-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.45);
}

.btn-hero-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--tr);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat {
  border-left: 2px solid rgba(232, 160, 32, 0.5);
  padding-left: 1.25rem;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-img-main {
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-img-sm {
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.hero-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-float-icon {
  width: 42px;
  height: 42px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.25rem;
}

.hero-float-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-float-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SERVICES STRIP */
.services-strip {
  background: var(--navy);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1320px;
  margin: 0 auto;
}

.strip-item {
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.strip-item:last-child {
  border-right: none;
}

.strip-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--tr);
}

.strip-item:hover::before {
  transform: scaleX(1);
}

.strip-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.strip-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.strip-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* LAYOUT */
.section {
  padding: 5.5rem 0;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bg-slate {
  background: var(--off-white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.025rem;
  max-width: 560px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 1rem;
}

.section-header-center .section-label {
  justify-content: center;
}

.section-header-center .section-label::before {
  display: none;
}

.section-header-center .section-desc {
  margin: 0 auto;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-lift);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.4);
  text-align: center;
}

.about-badge-float strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-float span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-feat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--off-white);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--red);
}

.about-feat-icon {
  color: var(--red);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feat h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--navy);
}

.about-feat p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--tr);
}

.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.srv-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(200, 16, 46, 0.2);
}

.srv-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr);
}

.srv-card:hover .srv-img img {
  transform: scale(1.06);
}

.srv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.7) 0%, transparent 60%);
}

.srv-img-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.srv-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.srv-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.srv-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.srv-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.srv-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--tr);
}

.srv-link i {
  transition: var(--tr);
}

.srv-link:hover i {
  transform: translateX(4px);
}

/* STATS */
.stats-band {
  background: linear-gradient(135deg, var(--navy-mid, #0e2a50) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}

.stats-inner {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-img {
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lift);
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: var(--tr);
  box-shadow: 0 2px 8px rgba(11, 31, 58, 0.06);
}

.why-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(200, 16, 46, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--tr);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.testi-card::before {
  content: '\201C';
  font-family: 'Barlow Condensed', sans-serif;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(200, 16, 46, 0.12);
  font-weight: 900;
  line-height: 1;
}

.testi-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testi-stars i {
  color: var(--gold);
  font-size: 0.85rem;
}

.testi-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-author h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 520px;
}

.cta-inner h2 span {
  opacity: 0.75;
  font-weight: 600;
}

.btn-cta {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: var(--tr);
}

.btn-cta:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  padding: 4.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 46px;
  border-radius: 6px;
  background: white;
  padding: 2px;
}

.footer-logo-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-logo-text span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--tr);
}

.footer-social-btn:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--red);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.footer-contact-list i {
  color: var(--red);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* DROPDOWN NAVIGATION */
@media (min-width: 769px) {
  .nav-dropdown {
    position: relative;
    display: inline-block;
    margin: 0 0.25rem;
  }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lift);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 0.75rem 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--tr);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    color: var(--text) !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--tr);
  }

  .nav-dropdown-item i {
    color: var(--red);
    width: 16px;
    text-align: center;
    font-size: 0.95rem;
    transition: var(--tr);
  }

  .nav-dropdown-item:hover {
    background: var(--off-white);
    color: var(--red) !important;
    padding-left: 1.5rem;
  }

  .nav-dropdown-item:hover i {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    margin: 0;
  }

  .nav-dropdown-menu {
    display: none;
    background: rgba(0, 0, 0, 0.03);
    border-left: 2px solid var(--red);
    margin: 0.5rem 0 0 1rem;
    padding: 0.5rem 0;
    border-radius: 4px;
  }
  .nav-dropdown-menu.active {
    display: block !important;
  }

  .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    color: var(--text) !important;
    font-size: 0.95rem;
    transition: var(--tr);
  }

  .nav-dropdown-item i {
    color: var(--red);
    width: 16px;
  }
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .strip-item:nth-child(3) {
    border-right: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    display: none;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 42px !important;
  }

  .logo-text strong {
    font-size: 1.15rem !important;
    gap: 0.12em !important;
  }

  .topbar-left {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open {
    display: flex;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 12px 40px rgba(11, 31, 58, 0.15);
    z-index: 999;
  }

  .nav-link {
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
  }

  .nav-btn {
    margin: 0.5rem 0 0 0;
    text-align: center;
    justify-content: center;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-item:nth-child(2n) {
    border-right: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-img-accent,
  .about-badge-float {
    display: none;
  }

  .about-img-main {
    height: 300px;
  }

  .why-img {
    height: 320px;
  }
}

/* --- FOOTER LOGO STYLES --- */
.footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.footer-logo .logo-text strong {
  display: flex !important;
  align-items: center;
  gap: 0.18em;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-logo .logo-b {
  color: #e31e24 !important; /* Bright Red */
}

.footer-logo .logo-onzer,
.footer-logo .logo-logistics {
  color: #8c202d !important; /* Maroon */
}

.footer-logo .logo-pvt {
  color: #4a2c56 !important; /* Deep Purple */
}

.footer-logo .logo-ltd {
  color: #132247 !important; /* Deep Navy Blue */
}/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: #FFF;
}
