/* ================================================================
   RENU SUPPLY CHAIN PVT LTD - Main Stylesheet
   Bootstrap 5 | Modern UI | Professional Logistics Website
================================================================ */

/* ===========================
   1. GOOGLE FONTS & VARIABLES
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap');

:root {
  --primary:          #003087;
  --primary-dark:     #001f5c;
  --primary-light:    #1a4db8;
  --secondary:        #ff6b00;
  --secondary-dark:   #d45700;
  --secondary-light:  #ff8c3d;
  --accent:           #00a8e8;
  --dark:             #0d1117;
  --darker:           #060a10;
  --gray-900:         #111827;
  --gray-700:         #374151;
  --gray-500:         #6b7280;
  --gray-300:         #d1d5db;
  --gray-100:         #f3f4f6;
  --white:            #ffffff;
  --success:          #10b981;
  --warning:          #f59e0b;

  --gradient-primary: linear-gradient(135deg, #003087 0%, #1a4db8 100%);
  --gradient-hero1:   linear-gradient(135deg, #001230 0%, #003087 55%, #1a4db8 100%);
  --gradient-hero2:   linear-gradient(135deg, #0d1117 0%, #1a0a00 40%, #8b2d00 100%);
  --gradient-hero3:   linear-gradient(135deg, #001a33 0%, #00497a 55%, #0099cc 100%);
  --gradient-orange:  linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  --gradient-dark:    linear-gradient(135deg, #0d1117 0%, #1a2035 100%);

  --shadow-sm:       0 2px 8px rgba(0,0,0,0.07);
  --shadow:          0 4px 20px rgba(0,0,0,0.1);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:       0 16px 48px rgba(0,0,0,0.18);
  --shadow-primary:  0 8px 24px rgba(0,48,135,0.28);
  --shadow-orange:   0 8px 24px rgba(255,107,0,0.32);

  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:100px;

  --transition-fast: all 0.2s ease;
  --transition:      all 0.35s ease;
  --transition-slow: all 0.55s ease;

  --section-py: 100px;
}

/* ===========================
   2. RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  overflow-x: hidden;
  background: #fff;
}
h1,h2,h3,h4,h5,h6 { font-family:'Poppins',sans-serif; font-weight:700; line-height:1.3; color:var(--dark); }
a { text-decoration:none; transition:var(--transition-fast); }
img { max-width:100%; height:auto; }
ul { list-style:none; padding:0; margin:0; }
section { position:relative; }

/* ===========================
   3. UTILITIES
=========================== */
.section-py { padding: var(--section-py) 0; }
.section-py-sm { padding: 70px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--secondary); }
.section-title span.blue { color: var(--primary); }
.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.85;
  max-width: 580px;
}
.divider {
  width: 52px; height: 4px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  margin: 12px 0 24px;
}
.divider-center { margin: 12px auto 24px; }
.divider-white { background: rgba(255,255,255,0.5); }

/* Buttons */
.btn-orange {
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  cursor: pointer;
}
.btn-orange:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,107,0,0.42);
}
.btn-navy {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  cursor: pointer;
}
.btn-navy:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,48,135,0.38);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  padding: 11px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-white-solid {
  background: var(--white);
  color: var(--secondary);
  border: none;
  padding: 13px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.btn-white-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
  color: var(--secondary);
}

/* ===========================
   4. PRELOADER
=========================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }

/* Logo + name row */
.preloader-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInDown 0.6s ease both;
}
.preloader-icon {
  height: 64px;
  width: auto;
  filter: brightness(10) saturate(0);  /* makes the png fully white */
}
.preloader-text { line-height: 1; }
.preloader-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.2;
}
.preloader-tagline {
  font-size: 0.65rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Loading bar */
.preloader-bar {
  width: 220px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  animation: load 1.2s ease-in-out forwards;
}
@keyframes load {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ===========================
   5. TOP BAR
=========================== */
.top-bar {
  background: var(--primary-dark);
  padding: 9px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--secondary); }
.top-bar-info { display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.top-bar-info span { display:flex; align-items:center; gap:7px; }
.top-bar-info i { color: var(--secondary); font-size:0.75rem; }
.top-social { display:flex; align-items:center; gap:8px; }
.top-social a {
  width:28px; height:28px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.72rem;
  transition: var(--transition);
}
.top-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   6. NAVBAR
=========================== */
.main-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  z-index: 1000;
}
.main-nav.sticky-top { position: sticky; top: 0; }
.main-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.14); }
.main-nav .navbar-brand { padding: 10px 0; }
.main-nav .navbar-brand img { height: 58px; width: auto; }
.main-nav .nav-link {
  color: var(--gray-700) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 30px 15px !important;
  position: relative;
  letter-spacing: 0.2px;
  transition: var(--transition);
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 22px; left: 15px; right: 15px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active-link { color: var(--primary) !important; }
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active-link::after { transform: scaleX(1); }
.main-nav .nav-cta {
  background: var(--gradient-orange);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  padding: 10px 22px !important;
  font-weight: 600;
  margin: 16px 0 16px 8px;
  box-shadow: var(--shadow-orange);
  letter-spacing: 0;
}
.main-nav .nav-cta::after { display:none; }
.main-nav .nav-cta:hover { transform:translateY(-2px); box-shadow: 0 10px 22px rgba(255,107,0,0.42); color:var(--white)!important; }
.main-nav .navbar-toggler { border:none; padding:8px; box-shadow:none; }
.main-nav .navbar-toggler:focus { box-shadow:none; }

/* ===========================
   7. HERO SECTION
=========================== */
.hero-slide {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide-1 { background: var(--gradient-hero1); }
.hero-slide-2 { background: var(--gradient-hero2); }
.hero-slide-3 { background: var(--gradient-hero3); }

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,107,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,168,232,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-slide .container { position:relative; z-index:2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--secondary);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.7s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .highlight { color: var(--secondary); }
.hero-title .highlight-blue { color: #5aaeff; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 34px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
  margin-bottom: 42px;
}
.hero-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.83rem;
}
.hero-check i { color: var(--secondary); font-size:0.75rem; }

/* Hero Visual Box */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s ease 0.2s both;
}
.hero-visual-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.hero-visual-icon {
  font-size: 5rem;
  margin-bottom: 18px;
  line-height: 1;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.hero-stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.hero-stat-box .h-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-box .h-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.hero-stat-box .h-num span { color: var(--secondary); }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  margin: 0 20px;
  opacity: 1;
}
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--secondary); border-color:var(--secondary); }
.carousel-indicators { bottom: 28px; }
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  transition: var(--transition);
  margin: 0 4px;
}
.carousel-indicators .active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  border-color: var(--secondary);
}

/* ===========================
   8. STATS BAR
=========================== */
.stats-bar {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 5;
}
.stats-bar-inner { display: flex; flex-wrap: wrap; }
.stat-bar-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-item:hover { background: rgba(255,255,255,0.04); }
.stat-bar-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.stat-bar-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-bar-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

/* ===========================
   9. ABOUT SECTION
=========================== */
.about-img-col {
  position: relative;
  padding: 30px 30px 0 0;
}
.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-img-box .about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,30,80,0.7) 100%);
}
.about-exp-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gradient-orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
.about-exp-badge .exp-num { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.about-exp-badge .exp-text { font-size: 0.78rem; opacity: 0.9; line-height: 1.35; margin-top: 4px; }
.about-bg-shape {
  position: absolute;
  top: 0; left: 0;
  width: 120px; height: 120px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.12;
  z-index: -1;
}
.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}
.about-feat {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.about-feat-icon {
  width: 38px; height: 38px;
  background: rgba(255,107,0,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.about-feat h6 { font-size: 0.84rem; font-weight: 700; margin-bottom: 2px; }
.about-feat p { font-size: 0.75rem; color: var(--gray-500); margin: 0; line-height: 1.5; }

/* ===========================
   10. SERVICES SECTION
=========================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,48,135,0.04);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.si-blue   { background: rgba(0,48,135,0.08);  color: var(--primary); }
.si-orange { background: rgba(255,107,0,0.1);  color: var(--secondary); }
.si-cyan   { background: rgba(0,168,232,0.1);  color: var(--accent); }
.si-green  { background: rgba(16,185,129,0.1); color: var(--success); }
.si-purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.si-red    { background: rgba(239,68,68,0.1);  color: #ef4444; }

.service-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 18px; }
.service-list { margin-bottom: 20px; }
.service-list li {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.service-list li i { color: var(--success); font-size: 0.7rem; }
.service-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link i { transition: transform 0.25s ease; }
.service-card:hover .service-link { color: var(--secondary); }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ===========================
   11. COUNTER SECTION
=========================== */
.counter-section {
  background: var(--gradient-primary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  top:-40%; right:-8%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.counter-section::after {
  content: '';
  position: absolute;
  bottom:-40%; left:-5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

/* Single-row flex layout — always one row */
.counter-flex-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  position: relative;
  z-index: 1;
}
.counter-divider {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.counter-item {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 16px 12px;
  position: relative;
  z-index: 1;
}
.counter-item .c-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 10px;
  opacity: 0.9;
}
.counter-item .c-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.counter-item .c-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.3px;
}

/* Scale down gracefully on small screens */
@media (max-width: 575.98px) {
  .counter-item .c-num  { font-size: 1.7rem; }
  .counter-item .c-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .counter-item .c-label { font-size: 0.68rem; }
  .counter-item { padding: 12px 6px; }
  .counter-divider { height: 60px; }
}

/* ===========================
   12. WHY CHOOSE US
=========================== */
.why-card {
  display: flex;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  height: 100%;
  background: var(--white);
}
.why-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(0,48,135,0.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.why-icon.orange { background: var(--gradient-orange); }
.why-card h5 { font-size: 0.97rem; font-weight: 700; margin-bottom: 7px; }
.why-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.75; margin: 0; }

/* ===========================
   13. PROCESS SECTION
=========================== */
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}
.process-step-num {
  width: 62px; height: 62px;
  background: var(--gradient-orange);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 1;
}
.process-connector {
  position: absolute;
  top: 50px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: var(--gradient-orange);
  opacity: 0.3;
}
.process-step-icon { font-size: 2rem; color: var(--primary); margin-bottom: 14px; }
.process-step h5 { font-size: 0.96rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.7; }

/* ===========================
   14. TESTIMONIALS
=========================== */
.testimonials-section {
  background: var(--dark);
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0,48,135,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,107,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  height: 100%;
}
.testi-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-5px);
  border-color: rgba(255,107,0,0.25);
}
.testi-quote { font-size: 2.5rem; color: var(--secondary); opacity: 0.4; line-height: 1; margin-bottom: 14px; }
.testi-stars { color: #fbbf24; font-size: 0.8rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.9; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.testi-role { font-size: 0.75rem; color: var(--secondary); }

/* ===========================
   15. CTA SECTION
=========================== */
.cta-section {
  background: var(--gradient-orange);
  padding: 90px 0;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: 2.6rem;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  position: relative; z-index: 1;
}
.cta-btns { position: relative; z-index: 1; display:flex; gap:14px; flex-wrap:wrap; }

/* ===========================
   16. INDUSTRIES
=========================== */
.industry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}
.industry-card i { font-size: 1.9rem; color: var(--primary); margin-bottom: 10px; transition: var(--transition); display: block; }
.industry-card h6 { font-size: 0.82rem; font-weight: 600; color: var(--dark); margin: 0; transition: var(--transition); }
.industry-card:hover i,
.industry-card:hover h6 { color: var(--white); }

/* ===========================
   17. MISSION / VISION
=========================== */
.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  height: 100%;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-5px); }
.mv-card.mission { border-bottom-color: var(--primary); }
.mv-card.vision  { border-bottom-color: var(--secondary); }
.mv-card .mv-icon { font-size: 2.8rem; margin-bottom: 18px; }
.mv-card.mission .mv-icon { color: var(--primary); }
.mv-card.vision .mv-icon  { color: var(--secondary); }
.mv-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.mv-card p { font-size: 0.86rem; color: var(--gray-500); line-height: 1.85; }

/* Value items */
.value-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow); border-color: transparent; }
.value-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* Team cards */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; font-weight: 800;
  color: var(--white);
}
.team-info { padding: 22px 20px; }
.team-info h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-info .role { font-size: 0.8rem; color: var(--secondary); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.7; }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.team-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ===========================
   18. CONTACT PAGE
=========================== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.contact-info-card:hover { transform: translateY(-5px); border-top-color: var(--secondary); }
.c-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(0,48,135,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.contact-info-card:hover .c-icon-wrap { background: var(--primary); color: var(--white); }
.contact-info-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.contact-info-card p, .contact-info-card a {
  font-size: 0.86rem; color: var(--gray-500); line-height: 1.75;
}
.contact-info-card a:hover { color: var(--secondary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  box-shadow: var(--shadow-md);
}
.form-label-c { font-size: 0.83rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; display: block; }
.form-ctrl {
  width: 100%;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--gray-100);
  transition: var(--transition-fast);
  outline: none;
}
.form-ctrl:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,48,135,0.08);
}
textarea.form-ctrl { resize: vertical; min-height: 130px; }
select.form-ctrl { appearance: none; cursor: pointer; }

/* ===========================
   19. TRACKING PAGE
=========================== */
.tracking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}
.tracking-input-group {
  display: flex;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: var(--transition-fast);
}
.tracking-input-group:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0,48,135,0.08); }
.tracking-input {
  flex: 1;
  border: none;
  padding: 16px 26px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  outline: none;
  background: transparent;
}
.tracking-submit {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.tracking-submit:hover { background: var(--gradient-orange); }
.tracking-result {
  margin-top: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  display: none;
}
.tracking-result.show { display: block; animation: fadeInUp 0.4s ease; }
.tracking-result-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
}
.tracking-result-body { padding: 24px; background: var(--white); }
.timeline-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.timeline-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.timeline-dot.done { background: var(--primary); color: var(--white); }
.timeline-dot.pending { background: var(--gray-100); color: var(--gray-500); border: 2px solid var(--gray-300); }
.timeline-content { flex: 1; }
.timeline-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.timeline-subtitle { font-size: 0.76rem; color: var(--gray-500); }
.timeline-time { font-size: 0.75rem; color: var(--gray-500); text-align: right; white-space: nowrap; flex-shrink: 0; }

/* Tracking info cards */
.track-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.track-info-card:hover { box-shadow: var(--shadow); }
.track-info-card i { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; display: block; }
.track-info-card h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.track-info-card p { font-size: 0.8rem; color: var(--gray-500); margin: 0; line-height: 1.65; }

/* ===========================
   20. PAGE HERO BANNER
=========================== */
.page-banner {
  background: var(--gradient-hero1);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-banner-circle-1 {
  position: absolute;
  top: -50%; right: -8%;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-banner-circle-2 {
  position: absolute;
  bottom: -60%; left: -5%;
  width: 350px; height: 350px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.page-banner h1 {
  font-size: 2.8rem;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative; z-index:1;
}
.breadcrumb-wrap { position: relative; z-index:1; }
.breadcrumb-wrap .breadcrumb { margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb-item.active { color: var(--secondary); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ===========================
   21. FOOTER
=========================== */
.main-footer {
  background: var(--darker);
  padding: 80px 0 0;
}
.footer-logo { height: 54px; margin-bottom: 18px; filter: brightness(10) saturate(0); }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); transform: translateY(-3px); }
.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 10px;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-links a i { color: var(--secondary); font-size: 0.68rem; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item .f-c-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item .f-c-text { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-contact-item .f-c-text a { color: rgba(255,255,255,0.45); }
.footer-contact-item .f-c-text a:hover { color: var(--secondary); }
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--secondary); }

/* ===========================
   22. BACK TO TOP
=========================== */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  display: none;
  align-items: center; justify-content: center;
  z-index: 998;
  transition: var(--transition);
}
#backToTop.visible { display: flex; }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(255,107,0,0.5); }

/* ===========================
   23. ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform: translateY(-20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform: translateX(40px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity:0; transform: translateX(-40px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.float { animation: float 4s ease-in-out infinite; }

/* ===========================
   24. NAVBAR BRAND (logo + text)
=========================== */
.nav-logo-icon {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-brand-text { line-height: 1; }
.nav-brand-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.8px;
  line-height: 1.2;
}
.nav-brand-tag {
  font-size: 0.6rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width:480px) {
  .nav-brand-name { font-size:0.88rem; }
  .nav-brand-tag  { display:none; }
  .nav-logo-icon  { height:42px; }
}

/* ===========================
   25. VIDEO HERO SECTION
=========================== */
.hero-video-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback gradient if video fails */
  background: linear-gradient(135deg, #001230 0%, #003087 55%, #1a4db8 100%);
}

/* Video background */
.hero-vid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-vid-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.hero-vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 15, 60, 0.55) 0%,
    rgba(0, 40, 120, 0.48) 40%,
    rgba(0, 20, 80, 0.58) 100%
  );
}
.hero-vid-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 65px 65px;
  pointer-events: none;
}

/* Hero content sits above video */
.hero-vid-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.min-vh-hero { min-height: calc(95vh - 160px); }

/* Floating stat cards on video hero */
.vid-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  transition: var(--transition);
}
.vid-stat-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px) !important;
}
.vid-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.vid-stat-icon.orange { background: rgba(255,107,0,0.2); color: var(--secondary); }
.vid-stat-icon.blue   { background: rgba(0,168,232,0.2); color: var(--accent); }
.vid-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.vid-stat-num span { color: var(--secondary); }
.vid-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.62);
  margin-top: 3px;
  line-height: 1.3;
}

/* ===========================
   Hero Compact Quote Form
=========================== */
.hero-compact-form {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 26px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hcf-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hcf-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}
.hcf-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.hcf-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.hcf-field {
  position: relative;
  margin-bottom: 11px;
}
.hcf-field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  pointer-events: none;
}
.hcf-top-icon {
  top: 14px;
  transform: none;
}
.hcf-field input,
.hcf-field select,
.hcf-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 9px 12px 9px 34px;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  outline: none;
  transition: var(--transition-fast);
  resize: none;
}
.hcf-field select option { color: var(--dark); background: #fff; }
.hcf-field input::placeholder,
.hcf-field textarea::placeholder { color: rgba(255,255,255,0.38); }
.hcf-field input:focus,
.hcf-field select:focus,
.hcf-field textarea:focus {
  border-color: var(--secondary);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.18);
}
.hcf-btn {
  width: 100%;
  padding: 11px;
  background: var(--gradient-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.hcf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,107,0,0.45);
}
.hcf-privacy {
  text-align: center;
  font-size: 0.67rem;
  color: rgba(255,255,255,0.38);
  margin: 10px 0 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-full);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity:1; }
  100% { transform: translateY(12px); opacity:0; }
}

/* ===========================
   26. OUR CLIENTS SECTION
=========================== */
.clients-section { overflow: hidden; }

/* Individual client logo cards (sprite clipping) */
.client-logo-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  padding: 20px 14px 12px;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.client-logo-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-5px);
}
/* Clip each logo from the combined sprite */
.client-sprite {
  display: block;
  /* The our-client.jpg has 4 logos in ~1533px wide, ~198px tall */
  width: 160px;
  height: 80px;
  object-fit: none;
  object-position: 0 0;
  margin: 0 auto 10px;
  max-width: 100%;
}
/* Each quarter of the 4-logo image (1533px total width / 4 = ~383px each) */
.client-1 { object-position: 0% center;    }
.client-2 { object-position: 33.3% center; }
.client-3 { object-position: 66.6% center; }
.client-4 { object-position: 100% center;  }

.client-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 4px;
}
.client-logo-card:hover .client-name { color: var(--primary); }

/* Marquee infinite scroll strip */
.clients-marquee-outer {
  width: 100%;
  overflow: hidden;
  padding: 24px 0 0;
  border-top: 1px solid var(--gray-100);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}
.clients-marquee-track:hover { animation-play-state: paused; }
.clients-strip-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.75);
  transition: var(--transition);
  flex-shrink: 0;
}
.clients-marquee-track:hover .clients-strip-img {
  filter: grayscale(0%) opacity(1);
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===========================
   27. RESPONSIVE
=========================== */
@media (max-width: 1199.98px) {
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2.2rem; }
}
@media (max-width: 991.98px) {
  :root { --section-py: 75px; }
  .hero-video-section { min-height: 85vh; }
  .hero-vid-content { padding-top: 60px; padding-bottom: 60px; }
  .min-vh-hero { min-height: auto; }
  .hero-slide { min-height: 75vh; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .main-nav .nav-link { padding: 12px 14px !important; }
  .main-nav .nav-link::after { display: none; }
  .main-nav .nav-cta { margin: 6px 0 14px; }
  .about-img-box img { height: 380px; }
  .about-exp-badge { right: 0; bottom: -10px; }
  .counter-divider { display: none; }
}
@media (max-width: 767.98px) {
  :root { --section-py: 60px; }
  .hero-video-section { min-height: 100vh; }
  .hero-scroll-hint { display: none; }
  .hero-slide { min-height: 85vh; }
  .hero-title { font-size: 2rem; }
  .hero-visual { display: none; }
  .client-sprite { width: 120px; height: 60px; }
  .top-bar-info { font-size: 0.74rem; gap: 12px; }
  .section-title { font-size: 1.75rem; }
  .cta-section h2 { font-size: 2rem; }
  .contact-form-card { padding: 30px 22px; }
  .tracking-card { padding: 34px 24px; }
  .tracking-input-group { flex-direction: column; border-radius: var(--radius-md); }
  .tracking-input { border-bottom: 1px solid var(--gray-300); }
  .tracking-submit { border-radius: 0 0 var(--radius-md) var(--radius-md); justify-content: center; }
  .hero-btns { flex-wrap: nowrap; gap: 8px; }
  .hero-btns .btn-orange,
  .hero-btns .btn-white-outline { padding: 10px 14px; font-size: 0.78rem; gap: 5px; letter-spacing: 0; flex: 1; justify-content: center; }
  .page-banner h1 { font-size: 2.2rem; }
  .stat-bar-item { padding: 18px 16px; }
  .stat-bar-num { font-size: 1.4rem; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.75rem; }
  .about-feature-grid { grid-template-columns: 1fr; }
  .top-bar-info { display: none !important; }
  .cta-btns { flex-direction: column; }
  .section-title { font-size: 1.55rem; }
}

/* ===========================
   MOBILE NAV DRAWER
=========================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 40, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 305px;
  max-width: 86vw;
  height: 100dvh;
  height: 100vh;
  background: #fff;
  z-index: 9001;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 60px rgba(0, 0, 0, 0.24);
  overflow-y: auto;
}
.mobile-nav-drawer.active {
  transform: translateX(0);
}

/* Drawer header */
.mnd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
  flex-shrink: 0;
}
.mnd-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mnd-logo {
  height: 40px;
  width: auto;
}
.mnd-brand-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1.2;
}
.mnd-brand-tag {
  font-size: 0.6rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.mnd-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-700);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-fast);
  line-height: 1;
}
.mnd-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

/* Drawer nav links */
.mnd-nav {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}
.mnd-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
  text-decoration: none;
}
.mnd-link i {
  width: 20px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.mnd-link:hover,
.mnd-link.mnd-active {
  background: rgba(0, 48, 135, 0.05);
  border-left-color: var(--secondary);
  color: var(--primary);
}
.mnd-link:hover i,
.mnd-link.mnd-active i {
  color: var(--secondary);
}

/* Drawer footer */
.mnd-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--gray-300);
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.mnd-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
}
.mnd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mnd-contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: var(--transition-fast);
}
.mnd-contact-info a:hover { color: var(--primary); }
.mnd-contact-info a i {
  color: var(--secondary);
  width: 14px;
  flex-shrink: 0;
}
.mnd-social {
  display: flex;
  gap: 8px;
}
.mnd-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  text-decoration: none;
  transition: var(--transition-fast);
}
.mnd-social a:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* Only show toggler below lg */
@media (min-width: 992px) {
  .mobile-nav-drawer,
  .mobile-nav-overlay { display: none !important; }
}
