/* ============================================================
   SR BAJRANG LOGISTICS — style.css
   White Theme | Professional Logistics Design
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --orange:        #E8460A;
  --orange-hover:  #C43909;
  --orange-light:  #FF7043;
  --orange-pale:   #FFF3EE;
  --orange-pale2:  #FFE8DF;
  --blue:          #1A3A6B;
  --blue-mid:      #2552A0;
  --blue-light:    #EBF2FB;
  --white:         #FFFFFF;
  --off-white:     #F7F9FC;
  --light-gray:    #EEF1F6;
  --mid-gray:      #D8DEE8;
  --text-dark:     #111827;
  --text-mid:      #374151;
  --text-light:    #6B7280;
  --shadow-xs:     0 1px 6px  rgba(26,58,107,0.06);
  --shadow-sm:     0 3px 14px rgba(26,58,107,0.09);
  --shadow-md:     0 8px 30px rgba(26,58,107,0.13);
  --shadow-lg:     0 18px 55px rgba(26,58,107,0.17);
  --radius:        10px;
  --transition:    0.28s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION HELPERS ===== */
.section-pad  { padding: 90px 0; }
.bg-white     { background: var(--white); }
.bg-offwhite  { background: var(--off-white); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.08;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
.section-subtitle {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 440px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(232,70,10,0.35);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,70,10,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 32px;
  border-radius: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.26);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--blue);
  padding: 9px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-item {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar-item i { color: var(--orange-light); font-size: 0.72rem; }
.topbar-right { display: flex; gap: 8px; }
.topbar-social {
  width: 27px; height: 27px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.68rem;
  transition: all var(--transition);
}
.topbar-social:hover { background: var(--orange); border-color: var(--orange); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  padding: 0 50px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: height var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  height: 64px;
  box-shadow: var(--shadow-md);
}

/* Logo */
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-logo {
  height: 56px; width: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--orange-pale2);
  transition: height var(--transition);
}
#navbar.scrolled .nav-logo { height: 44px; width: 44px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.sr-bajrang    { color: var(--orange); }
.logistics-word { color: var(--blue); }
.nav-brand-slogan {
  font-size: 0.63rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 13px;
  border-radius: 5px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--orange); background: var(--orange-pale); }
.nav-link.active { color: var(--orange); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}
/* CTA button in nav */
.nav-cta-btn {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 14px rgba(232,70,10,0.3);
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(232,70,10,0.4) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--orange) 0%, #FF7043 100%);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 32s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.ticker-item i { font-size: 0.7rem; opacity: 0.75; }
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#home {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background slides */
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

/* Gradient overlay — warm blue to transparent right */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,58,107,0.88) 0%,
    rgba(26,58,107,0.60) 45%,
    rgba(26,58,107,0.18) 100%
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 30px;
  padding: 7px 18px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: blinkDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blinkDot {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
.hero-badge span:last-child {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero-accent { color: var(--orange-light); display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide dots */
.hero-dots {
  position: absolute;
  right: 36px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.35);
}

/* Stats bar at hero bottom */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  display: flex;
  border-top: 3px solid var(--orange);
}
.h-stat {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid var(--mid-gray);
  transition: background var(--transition);
  cursor: default;
}
.h-stat:last-child { border-right: none; }
.h-stat:hover { background: var(--orange-pale); }
.h-stat-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.h-stat-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Media */
.about-media { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-corner-decor {
  position: absolute;
  top: -16px; left: -16px;
  width: 90px; height: 90px;
  border: 4px solid var(--orange);
  border-radius: 6px;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.about-badge-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(232,70,10,0.38);
  z-index: 2;
}
.about-badge-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-lbl {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 3px;
  font-weight: 700;
}

/* Text */
.about-content { }
.about-body { margin: 22px 0 32px; }
.about-body p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 13px;
}
.about-body strong { color: var(--blue); font-weight: 700; }

/* Pillars grid */
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1.5px solid var(--mid-gray);
  transition: all var(--transition);
}
.pillar-card:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pillar-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.pillar-card:hover .pillar-icon { transform: scale(1.1) rotate(-5deg); }
.pillar-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.4px;
}
.pillar-desc { font-size: 0.78rem; color: var(--text-light); margin-top: 3px; }

/* ============================================================
   AUTO-SCROLL GALLERY STRIP
   ============================================================ */
.gallery-strip { overflow: hidden; line-height: 0; }
.gallery-row {
  display: flex;
  gap: 0;
  animation: galleryScroll 36s linear infinite;
  width: max-content;
}
.gallery-row:hover { animation-play-state: paused; }
.g-item {
  width: 340px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.07); }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--light-gray);
  transition: all 0.32s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.svc-img-wrap { position: relative; overflow: hidden; }
.svc-img-wrap img {
  width: 100%; height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.07); }
.svc-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.svc-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.svc-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.svc-icon {
  width: 40px; height: 40px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.svc-card:hover .svc-icon { background: var(--orange); color: #fff; }
.svc-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.18rem; font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.svc-desc {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.65; flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange);
  transition: gap var(--transition);
}
.svc-link i { font-size: 0.72rem; transition: transform var(--transition); }
.svc-card:hover .svc-link i { transform: translateX(5px); }

/* ============================================================
   VIDEO / TRANSPORT VISUAL STRIP
   ============================================================ */
.video-strip {
  position: relative;
  background: url('images/truck-2.jpg') center/cover no-repeat;
  padding: 80px 40px;
}
.vs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,107,0.92) 0%,
    rgba(26,58,107,0.80) 100%
  );
}
.vs-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.vs-cards {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.vs-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  cursor: pointer;
}
.vs-card video,
.vs-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vs-card:hover video,
.vs-card:hover img { transform: scale(1.04); }
.vs-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(26,58,107,0.85) 0%, transparent 100%);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: #fff; display: flex; align-items: center; gap: 8px;
}
.vs-card-label i { color: var(--orange-light); }
.vs-note {
  position: relative; z-index: 2;
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.vs-note code {
  background: rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 3px;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 38px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  background: var(--orange-pale);
}
.why-icon {
  width: 66px; height: 66px;
  background: var(--orange-pale);
  border: 2px solid var(--orange-pale2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--orange);
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); color: #fff; border-color: var(--orange); }
.why-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.4px;
  text-transform: uppercase; margin-bottom: 8px;
}
.why-desc { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   BRANCHES / NETWORK SECTION
   ============================================================ */
.hq-card {
  background: linear-gradient(135deg, var(--orange) 0%, #FF7043 100%);
  border-radius: var(--radius);
  padding: 38px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  box-shadow: 0 16px 45px rgba(232,70,10,0.28);
  position: relative;
  overflow: hidden;
}
.hq-card::after {
  content: 'HEAD OFFICE';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Rajdhani', sans-serif;
  font-size: 5.5rem; font-weight: 700;
  color: rgba(255,255,255,0.06);
  letter-spacing: 6px;
  white-space: nowrap;
  pointer-events: none;
}
.hq-left { display: flex; align-items: flex-start; gap: 20px; }
.hq-icon-box {
  width: 58px; height: 58px;
  background: rgba(255,255,255,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  flex-shrink: 0;
}
.hq-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; margin-bottom: 6px;
}
.hq-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.65rem; font-weight: 700;
  color: #fff; letter-spacing: 0.5px;
}
.hq-addr {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.87);
  line-height: 1.55; margin-top: 5px;
}
.hq-cta {
  background: #fff;
  color: var(--orange);
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.hq-cta:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.branch-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  cursor: default;
}
.branch-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--orange-pale);
}
.branch-pin {
  width: 36px; height: 36px;
  background: var(--orange-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 0.9rem;
  flex-shrink: 0; margin-top: 2px;
  transition: all var(--transition);
}
.branch-card:hover .branch-pin { background: var(--orange); color: #fff; }
.branch-city {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.5px;
  text-transform: uppercase;
}
.branch-addr {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55; margin-top: 4px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}

/* Info side */
.contact-info { }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 17px 20px;
  background: var(--off-white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.ci-card:hover { border-color: var(--orange); background: var(--orange-pale); }
.ci-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.95rem;
  flex-shrink: 0;
}
.ci-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.ci-value { font-size: 0.93rem; color: var(--text-dark); font-weight: 600; }

.contact-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.contact-img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-height: 220px;
}
.contact-social { display: flex; gap: 10px; }
.c-social {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1.5px solid var(--mid-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); font-size: 0.9rem;
  transition: all var(--transition);
}
.c-social:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }

/* Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--light-gray);
}
.form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-gray);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,70,10,0.09);
}
.form-group textarea { resize: vertical; min-height: 115px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, #FF7043 100%);
  color: #fff; border: none;
  padding: 16px;
  border-radius: 8px; cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(232,70,10,0.3);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,70,10,0.42);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { }
.footer-top {
  background: var(--blue);
  padding: 70px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-brand-col { }
.footer-logo-row {
  display: flex; align-items: center; gap: 13px; margin-bottom: 16px;
}
.footer-logo {
  height: 52px; width: 52px;
  object-fit: contain; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  padding: 2px; border: 1.5px solid rgba(255,255,255,0.12);
}
.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff;
}
.f-or { color: var(--orange-light); }
.footer-slogan {
  font-size: 0.63rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.footer-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 290px;
}
.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 7px;
  transition: color var(--transition);
}
.footer-links a i { font-size: 0.58rem; color: var(--orange); }
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex; gap: 11px; margin-bottom: 13px;
}
.footer-contact-item i { color: var(--orange-light); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.55; }

/* Footer bottom */
.footer-bottom {
  background: #0e2248;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.32); }
.footer-copy span { color: var(--orange-light); }
.footer-social { display: flex; gap: 8px; }
.f-soc {
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  transition: all var(--transition);
}
.f-soc:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-group {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,0.18);
  transition: all var(--transition);
}
.float-wa  { background: #25D366; }
.float-wa:hover  { background: #1da851; transform: scale(1.1); }
.float-call { background: var(--orange); }
.float-call:hover { background: var(--orange-hover); transform: scale(1.1); }

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 1100px) {
  .section-pad       { padding: 75px 0; }
  #navbar            { padding: 0 30px; }
  .topbar            { padding: 8px 30px; }
  .hero-content      { padding: 0 50px; }
  .about-grid        { gap: 50px; }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .vs-cards          { grid-template-columns: 1fr; gap: 16px; max-width: 540px; }
}
@media (max-width: 900px) {
  .about-grid        { grid-template-columns: 1fr; }
  .about-media       { max-width: 480px; margin: 0 auto; }
  .about-badge-card  { bottom: -20px; right: -10px; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .branches-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 44px; }
  .hq-card           { flex-direction: column; align-items: flex-start; gap: 18px; }
  .section-head      { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 768px) {
  .topbar            { display: none; }
  #navbar            { padding: 0 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 78px; left: 0;
    width: 100%;
    background: #fff;
    padding: 18px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--orange);
    z-index: 999;
  }
  .nav-links.open    { display: flex; }
  .nav-link          { font-size: 1rem; padding: 12px 16px; }
  .hamburger         { display: flex; }
  .hero-content      { padding: 0 24px; }
  .hero-stats-bar    { display: none; }
  .hero-dots         { right: 14px; }
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr 1fr; }
  .branches-grid     { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-box  { padding: 26px 18px; }
  .footer-grid       { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-top        { padding: 50px 0 36px; }
  .video-strip       { padding: 60px 20px; }
  .vs-cards          { grid-template-columns: 1fr; }
  .hq-card           { padding: 28px 22px; }
}
@media (max-width: 520px) {
  .why-grid          { grid-template-columns: 1fr; }
  .about-pillars     { grid-template-columns: 1fr; }
  .hero-title        { font-size: 2.5rem; }
  .hero-badge span:last-child { font-size: 0.65rem; letter-spacing: 1.5px; }
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-sec { overflow: hidden; }

.clients-head { }

/* Marquee wrapper */
.cl-marquee {
  overflow: hidden;
  margin: 0 -24px 48px;            /* bleed to edges */
  position: relative;
}
/* Fade edges */
.cl-marquee::before,
.cl-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cl-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}
.cl-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

/* Track — slides continuously */
.cl-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: clientsScroll 22s linear infinite;
  padding: 12px 24px;
}
.cl-track:hover { animation-play-state: paused; }

@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual client card */
/* Individual client card */
.cl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px 20px;
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  min-width: 270px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: default;
  text-align: center;
}
.cl-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 32px rgba(232,70,10,0.14);
  transform: translateY(-6px);
}

/* SVG logo container */
.cl-logo-box {
  width: 100%;
  background: #fafbfd;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.cl-card:hover .cl-logo-box {
  background: var(--white);
  border-color: var(--orange-pale2);
}

/* The SVG itself */
.cl-svg {
  width: 100%;
  max-width: 220px;
  height: 72px;
  display: block;
  transition: transform 0.3s ease;
}
.cl-card:hover .cl-svg {
  transform: scale(1.04);
}

.cl-industry {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  background: var(--light-gray);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Trust bar */
.cl-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  border-radius: 12px;
  padding: 22px 32px;
  box-shadow: var(--shadow-xs);
  margin-top: 8px;
}
.cl-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-mid);
}
.cl-trust-item i { color: var(--orange); font-size: 1rem; }
.cl-trust-divider {
  width: 1px;
  height: 32px;
  background: var(--mid-gray);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cl-trust-bar    { flex-direction: column; gap: 12px; padding: 20px; }
  .cl-trust-divider { width: 80px; height: 1px; }
  .cl-card         { min-width: 220px; padding: 18px 14px; }
  .cl-svg          { height: 58px; }
}