/* ================================================
   SHARKEY LOGISTICS — MASTER STYLESHEET
   css/style.css
   ================================================ */

/* ---- Google Fonts ---- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap");

/* ---- CSS Variables ---- */
:root {
  --primary: #0a1931;
  --secondary: #007bff;
  --accent: #ff8c00;
 --bg-dark: #071428;
 --bg-card: rgba(255,255,255,0.06);
 --glass: rgba(10, 40, 90, 0.45);   
  --glass-border: rgba(0, 123, 255, 0.2);
  --text-white: #ffffff;
  --text-light: #b8cce0; 
  --font-main: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
  --shadow-glow: 0 0 50px rgba(0,123,255,0.2);
  --shadow-card: 0 20px 60px rgba(0,40,100,0.4);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
}


body {
  font-family: var(--font-main);
  background: linear-gradient(135deg, #071428 0%, #0a1f3d 50%, #071428 100%);
  color: var(--text-white);
  overflow-x: hidden;
}


/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  cursor: default;
}

/* ---- Scroll Progress Bar ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s;
}

/* ---- Scroll Bar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--primary);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 3px;
}

/* ---- Selection ---- */
::selection {
  background: var(--secondary);
  color: white;
}

/* ---- Typography ---- */
.accent-text {
  color: var(--accent);
}
.section-tag {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.15),
    rgba(255, 140, 0, 0.15)
  );
  border: 1px solid rgba(0, 123, 255, 0.3);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-white);
}
.section-sub {
  color: var(--text-light);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.section-para {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--secondary), #0056d6);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.35);
}
.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: 0.5s;
}
.btn-primary-custom:hover::before {
  left: 100%;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.5);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(10px);
}
.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* ================================================
   NAVBAR
   ================================================ */
.premium-navbar {
  background: transparent;
  padding: 18px 0;
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.premium-navbar.scrolled {
  background: rgba(6, 14, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.logo-svg {
  height: 52px;
  width: auto;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.nav-hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: 0.3s ease;
  transform: translateX(-50%);
}
.nav-hover:hover::after {
  width: 70%;
}
.nav-hover:hover {
  color: white !important;
}

/* Active link */
.nav-link.active-link {
  color: var(--accent) !important;
}
.nav-link.active-link::after {
  width: 70%;
}

/* Hamburger */
.premium-toggler {
  border: none;
  background: none;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.premium-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-cta {
  padding: 10px 22px !important;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
   rgba(6, 14, 30, 0.75) 0%,
    rgba(10, 25, 49, 0.65) 50%,
    rgba(0, 60, 140, 0.4) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 123, 255, 0.15);
  border: 1px solid rgba(0, 123, 255, 0.4);
  color: var(--secondary);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-light);
  margin-bottom: 38px;
  font-weight: 300;
  letter-spacing: 1px;
}
.hero-buttons {
  margin-bottom: 50px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}
.hero-stat span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat p {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ================================================
   TRACKING BAR
   ================================================ */
.tracking-bar-section {
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}
.tracking-glass-card {
 background: linear-gradient(135deg, rgba(10,31,61,0.97), rgba(0,80,180,0.12));
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0,123,255,0.3);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 30px 80px rgba(0,40,120,0.4), 0 0 0 1px rgba(0,123,255,0.1);
}
.tracking-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.tracking-sub {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}
.tracking-input-group {
  border-radius: 12px;
  overflow: hidden;
}
.tracking-icon {
  background: rgba(0, 123, 255, 0.15);
  border: 1px solid var(--glass-border);
  color: var(--secondary);
  border-right: none;
}
.tracking-input {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid var(--glass-border) !important;
  color: white !important;
  font-size: 15px;
  padding: 14px 18px;
}
.tracking-input::placeholder {
  color: var(--text-light);
}
.tracking-input:focus {
  box-shadow: none !important;
  border-color: var(--secondary) !important;
}
.btn-track {
  background: linear-gradient(135deg, var(--accent), #e67400);
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 0 12px 12px 0;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-track:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  color: white;
}
.track-result {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
}
.track-result-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.track-status-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--secondary), #0056d6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  animation: floatBadge 3s ease-in-out infinite;
  flex-shrink: 0;
}
.track-status-text h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
}
.track-status-text p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}
.track-steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}
.track-step.active {
  color: var(--secondary);
}
.track-step i {
  font-size: 20px;
}
.track-step.active i {
  color: var(--secondary);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
  padding: 120px 0;
  background:  linear-gradient(180deg, #071428, #0d2247 50%, #071428);
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img {
  transform: scale(1.05);
}
.about-img-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--secondary), #0056d6);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}
.badge-num {
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.badge-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}
.about-img-float {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  animation: floatBadge 4s ease-in-out infinite;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 15px;
}
.about-feature-item i {
  font-size: 18px;
}




.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1f3d 0%, #0d2d5e 50%, #0a1f3d 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,123,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}







.service-card {
  background: linear-gradient(145deg, rgba(10,40,90,0.5), rgba(7,20,40,0.8));
  border: 1px solid rgba(0,123,255,0.25);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}
.service-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(0,80,200,0.2), rgba(10,40,90,0.7));
  border-color: rgba(0,123,255,0.6);
  box-shadow: 0 20px 60px rgba(0,80,200,0.25), 0 0 30px rgba(0,123,255,0.1);
}












/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  padding: 120px 0;
  /* background:
    radial-gradient(
      ellipse at center,
      rgba(0, 123, 255, 0.05) 0%,
      transparent 70%
    ),
    var(--bg-dark); */
    background: linear-gradient(180deg, #071428 0%, #0d2247 50%, #071428 100%);
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    var(--shadow-glow),
    0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 123, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}
.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.2),
    rgba(255, 140, 0, 0.1)
  );
  border: 1px solid rgba(0, 123, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  transform: rotate(5deg) scale(1.05);
}
.service-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 16px;
  transition: 0.3s;
}
.service-link:hover {
  color: var(--accent);
  gap: 8px;
}

/* ================================================
   NETWORK / WORLD MAP
   ================================================ */
.network-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #071428, #0d2247 60%, #071428);
}
.world-map-wrap {
  position: relative;
  margin-top: 50px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0, 123, 255, 0.03);
}
.world-map-img {
  width: 100%;
  opacity: 0.35;
  filter: sepia(1) hue-rotate(180deg) saturate(2);
  display: block;
}
.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
}
.map-dot span {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
  animation: mapPulse 2s ease-in-out infinite;
}
.map-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.2);
  animation: mapPulse2 2s ease-in-out infinite;
}
@keyframes mapPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
}
@keyframes mapPulse2 {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.map-route {
  fill: none;
  stroke: rgba(0, 123, 255, 0.4);
  stroke-width: 1.5;
  stroke-dasharray: 8 5;
  animation: dashAnim 4s linear infinite;
}
@keyframes dashAnim {
  to {
    stroke-dashoffset: -50;
  }
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), rgba(0, 123, 255, 0.1));
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.stat-card {
   background: linear-gradient(145deg, rgba(0,60,160,0.2), rgba(10,25,49,0.8));
  border: 1px solid rgba(0,123,255,0.3);
  border-radius: 20px;
  padding: 40px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.stat-card:hover {
  transform: translateY(-8px);
   background: linear-gradient(145deg, rgba(0,80,200,0.3), rgba(0,40,120,0.6));
  border-color: rgba(0,123,255,0.6);
  box-shadow: 0 20px 50px rgba(0,80,200,0.3);
}
.stat-icon {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 16px;
}
.stat-num {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  color: var(--accent);
  display: inline;
  line-height: 1;
}
.stat-plus,
.stat-slash {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  display: inline;
}
.stat-label {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ================================================
   INDUSTRIES
   ================================================ */
.industries-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #071428, #0d2247);
}
.industry-card {
  background:linear-gradient(145deg, rgba(10,40,90,0.5), rgba(7,20,40,0.7));
  border: 1px solid rgba(0,123,255,0.2);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card i {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 14px;
  display: block;
  transition: var(--transition);
}
.industry-card p {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.industry-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(255,140,0,0.12), rgba(0,80,200,0.2));
  box-shadow: 0 20px 40px rgba(255,140,0,0.15);
}
.industry-card:hover i {
  color: var(--accent);
  transform: scale(1.15);
}

/* ================================================
   FLEET SECTION
   ================================================ */
/* .fleet-section {
  padding: 120px 0;
  background-image: url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1600&q=80");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 30, 0.95),
    rgba(10, 25, 49, 0.9)
  );
}
.fleet-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.fleet-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 123, 255, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.fleet-img-wrap {
  overflow: hidden;
  height: 220px;
}
.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.fleet-card:hover .fleet-img {
  transform: scale(1.08);
}
.fleet-card-body {
  padding: 24px;
}
.fleet-card-body h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 8px;
}
.fleet-card-body p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
} */





/* ================================================
   FLEET SECTION — FIXED
   ================================================ */
.fleet-section {
  padding: 120px 0;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;   /* ✅ Parallax effect */
}




.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 20, 60, 0.65) 0%,
    rgba(0, 80, 180, 0.35) 50%,
    rgba(0, 20, 60, 0.65) 100%
  );
  backdrop-filter: blur(1px);
  z-index: 0;
}

/* Container upar aaye overlay ke */
.fleet-section .container {
  position: relative;
  z-index: 1;
}





.fleet-section .section-tag {
  background:rgba(0, 123, 255, 0.25);
  border: 2px solid rgba(32, 94, 160, 0.8);
  color: #60b4ff;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 22px;
  border-radius: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  box-shadow:  0 0 20px rgba(0,123,255,0.4);
}



.fleet-section .section-sub {
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.9),
               0 0 30px rgba(0,0,0,0.7);
  opacity: 1;
}



.fleet-section .section-heading {
  text-shadow: 0 4px 25px rgba(0,0,0,0.8);
  color: #ffffff;
}

/* Fleet Cards — glassmorphism with blue glow */
.fleet-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fleet-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 123, 255, 0.5);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 123, 255, 0.2);
  background: rgba(0, 80, 200, 0.12);
}

.fleet-img-wrap {
  overflow: hidden;
  height: 230px;
  position: relative;
}

/* ✅ Orange bottom border on image on hover */
.fleet-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007BFF, #FF8C00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-img-wrap::after {
  transform: scaleX(1);
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.fleet-card:hover .fleet-img {
  transform: scale(1.08);
}

.fleet-card-body {
  padding: 24px 26px 28px;
}

.fleet-card-body h5 {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.fleet-card-body p {
  color: rgba(180, 210, 255, 0.85);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}















/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #091d3a, #071428);
}
.testimonial-swiper {
  padding-bottom: 60px !important;
}
.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  height: auto;
}
.testi-card:hover {
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: var(--shadow-glow);
}
.testi-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.testi-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testi-text::before {
  content: '"';
  font-size: 80px;
  color: rgba(0, 123, 255, 0.15);
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.testi-author h6 {
  color: white;
  font-weight: 700;
  margin: 0;
  font-size: 15px;
}
.testi-author span {
  color: var(--text-light);
  font-size: 13px;
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--secondary) !important;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
}
.swiper-pagination-bullet {
  background: var(--secondary) !important;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  transform: scale(1.3);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d2247, #071428);
}
.premium-accordion .accordion-item {
  background: var(--glass) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.premium-accordion .accordion-button {
  background: transparent !important;
  color: white !important;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 24px;
  box-shadow: none !important;
}
.premium-accordion .accordion-button::after {
  filter: invert(1);
}
.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--accent) !important;
}
.premium-accordion .accordion-body {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
  padding: 0 24px 20px;
  background: transparent;
}
.premium-accordion .accordion-body a {
  color: var(--secondary);
  text-decoration: none;
}
.premium-accordion .accordion-body a:hover {
  color: var(--accent);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  padding: 120px 0;
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 49, 0.95),
    rgba(0, 123, 255, 0.2)
  );
}
.cta-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-sub {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
  padding: 100px 0;
  background:linear-gradient(180deg, #071428, #091d3a);
}
.contact-info-card {
  background: linear-gradient(145deg, rgba(10,40,90,0.45), rgba(7,20,40,0.85));
  border: 1px solid rgba(0,123,255,0.25);
  border-radius: 24px;
  padding: 40px 36px;
  height: 100%;
  backdrop-filter: blur(15px);
}
.contact-info-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item i {
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.contact-info-item a {
  color: var(--secondary);
  text-decoration: none;
  transition: 0.2s;
}
.contact-info-item a:hover {
  color: var(--accent);
}
.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 42px;
  height: 42px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.contact-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  transform: translateY(-4px);
}
.contact-form-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(15px);
}
.contact-form-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.premium-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--glass-border) !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  transition: var(--transition) !important;
}
.premium-input:focus {
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15) !important;
  background: rgba(0, 123, 255, 0.05) !important;
}
.premium-input option {
  background: var(--primary);
  color: white;
}
.form-floating label {
  color: var(--text-light) !important;
  font-size: 14px;
  padding-left: 18px;
}
.form-success-msg {
  background: rgba(0, 200, 100, 0.12);
  border: 1px solid rgba(0, 200, 100, 0.3);
  border-radius: 12px;
  color: #4ade80;
  padding: 16px 20px;
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
}

/* ================================================
   GOOGLE MAP
   ================================================ */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
}
.map-container iframe {
  display: block;
  filter: grayscale(0.2);
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  text-decoration: none;
  z-index: 9000;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  color: white;
}
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 8px 50px rgba(37, 211, 102, 0.9),
      0 0 0 15px rgba(37, 211, 102, 0.05);
  }
}
.whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: rgba(10, 25, 49, 0.95);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ================================================
   FOOTER
   ================================================ */
.premium-footer {
  background:linear-gradient(180deg, #091d3a 0%, #060e1e 100%);
  border-top: 1px solid rgba(0,123,255,0.2);
}
.footer-top {
  padding: 80px 0 50px;
}
.footer-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  transform: translateY(-4px);
}
.footer-heading {
  color: white;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}
.footer-links i {
  font-size: 10px;
  color: var(--accent);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item p {
  color: var(--text-light);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}
.footer-contact-item a {
  color: var(--secondary);
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: var(--accent);
}
.footer-bottom {
  background: rgba(0,10,30,0.5);
  padding: 20px 0;
  border-top: 1px solid rgba(0,123,255,0.15);
}
.footer-bottom p {
  color: var(--text-light);
  font-size: 13px;
  margin: 0;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: 160px 0 80px;
  background-image: url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1600&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 30, 0.94),
    rgba(0, 123, 255, 0.1)
  );
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb {
  background: none;
  margin: 0;
}
.breadcrumb-item a {
  color: var(--secondary);
  text-decoration: none;
}
.breadcrumb-item.active {
  color: var(--text-light);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
}

/* ================================================
   SERVICES DETAIL
   ================================================ */
.service-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
  box-shadow: var(--shadow-card);
}
.service-detail-img:hover {
  transform: scale(1.02);
}
.service-detail-content {
  padding: 0 10px;
}
.service-icon-lg {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin-bottom: 20px;
}
.service-detail-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}
.service-detail-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-features-list {
  list-style: none;
  padding: 0;
}
.service-features-list li {
  color: var(--text-light);
  font-size: 15px;
  padding: 6px 0;
  display: flex;
  align-items: center;
}

/* ================================================
   MVV SECTION (About page)
   ================================================ */
.mvv-section {
  background: linear-gradient(180deg, var(--bg-dark), rgba(0, 123, 255, 0.04));
}
.mvv-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.mvv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.4);
}
.mvv-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.2),
    rgba(255, 140, 0, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--secondary);
  margin: 0 auto 20px;
}
.mvv-card h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 12px;
}
.mvv-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
}

/* Team section */
.team-section {
  background: var(--bg-dark);
}
.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.3);
}
.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
}
.team-card h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card span {
  color: var(--text-light);
  font-size: 13px;
}

/* ================================================
   TRACKING PAGE (full)
   ================================================ */
.tracking-full-section {
  background: var(--bg-dark);
}
.large-track-card {
  padding: 50px;
}
.track-icon-big {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), #0056d6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: white;
  margin: 0 auto 20px;
  animation: floatBadge 3s ease-in-out infinite;
}
.track-hint {
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
}
.track-divider {
  border-color: var(--glass-border);
  margin: 28px 0;
}
.track-status-badge {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.track-status-badge.in-transit {
  background: rgba(0, 123, 255, 0.15);
  border: 1px solid rgba(0, 123, 255, 0.4);
  color: var(--secondary);
}
.track-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.track-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding-bottom: 28px;
}
.track-timeline-item:last-child {
  padding-bottom: 0;
}
.track-timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--glass-border);
}
.track-timeline-item.completed::after {
  background: var(--secondary);
}
.track-tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: var(--glass);
  border: 2px solid var(--glass-border);
  color: var(--text-light);
  z-index: 1;
}
.track-timeline-item.completed .track-tl-dot {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}
.track-timeline-item.active .track-tl-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  animation: whatsappPulse 2s infinite;
}
.track-tl-content h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}
.track-tl-content p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 2px;
}
.track-tl-content small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* ================================================
   PARALLAX SECTIONS
   ================================================ */
.parallax-section {
  background-attachment: fixed;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .hero-title {
    font-size: 38px;
  }
  .hero-stats {
    gap: 24px;
  }
  .about-img {
    height: 380px;
  }
  .fleet-section,
  .cta-section {
    background-attachment: scroll;
  }
  .navbar-collapse {
    background: rgba(6, 14, 30, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
    border: 1px solid var(--glass-border);
  }
  .large-track-card {
    padding: 30px 24px;
  }
}
@media (max-width: 767px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .tracking-glass-card {
    padding: 24px 20px;
  }
  .contact-form-card,
  .contact-info-card,
  .large-track-card {
    padding: 28px 22px;
  }
  .world-map-wrap {
    overflow: hidden;
  }
  .about-img {
    height: 280px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-stat span {
    font-size: 22px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
  .stat-num {
    font-size: 34px;
  }
}

/* ================================================
   CUSTOM CURSOR
   ================================================ */
.cursor-dot {
  position: fixed;
  pointer-events: none;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  z-index: 99999;
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed;
  pointer-events: none;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0, 123, 255, 0.5);
  border-radius: 50%;
  z-index: 99998;
  transition:
    transform 0.15s,
    opacity 0.3s;
}

/* ================================================
   LOADING SCREEN
   ================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.loader-logo {
  animation: floatBadge 1.5s ease-in-out infinite;
}
.loader-logo svg {
  height: 60px;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--glass-border);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 3px;
  animation: loaderAnim 1.2s ease-out forwards;
}
@keyframes loaderAnim {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* About story section override */
.about-story-section,
.mvv-section,
.team-section {
  background: var(--bg-dark);
}
.services-detail-section {
  background: var(--bg-dark);
}






















/* ---- HERO SECTION COMPLETE FIX ---- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ Overlay thoda lighter karo — text dikhne ke liye */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 30, 0.78) 0%,
    rgba(10, 25, 49, 0.65) 50%,
    rgba(0, 60, 140, 0.55) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ✅ YAHI MAIN FIX HAI — z-index 2 se 3 karo */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 123, 255, 0.18);
  border: 1px solid rgba(0, 123, 255, 0.5);
  color: #60b4ff;
  padding: 9px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  /* ✅ Yeh ensure karta hai text hamesha white rahe */
  -webkit-text-fill-color: white;
}

/* accent span ke liye override */
.hero-title .accent-text {
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 23px);
  color: rgba(200, 220, 255, 0.9);
  margin-bottom: 42px;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-buttons {
  margin-bottom: 55px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
}

.hero-stat span {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255,140,0,0.5);
}

.hero-stat p {
  font-size: 12px;
  color: rgba(180, 210, 255, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 4px 0 0;
}



















/* ================================================
   NETWORK SECTION — NEW VERSION
   ================================================ */
.network-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #071428, #0d2247 50%, #071428);
}

/* Animated Route Bar */
.network-route-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 50px 0 20px;
  padding: 28px 36px;
  background: rgba(0,123,255,0.06);
  border: 1px solid rgba(0,123,255,0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.route-city {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}
.route-city i {
  color: var(--accent);
  font-size: 20px;
}
.route-city span {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.route-line {
  flex: 1;
  min-width: 40px;
  max-width: 120px;
  height: 2px;
  background: rgba(0,123,255,0.25);
  position: relative;
  overflow: hidden;
}

.route-dot-moving {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 20px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--secondary), var(--accent));
  border-radius: 3px;
  animation: moveDot 2s linear infinite;
}

@keyframes moveDot {
  0%   { left: -20px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* Network Region Cards */
.network-card {
  background: linear-gradient(145deg, rgba(10,40,90,0.5), rgba(7,20,40,0.8));
  border: 1px solid rgba(0,123,255,0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.network-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: 0.4s ease;
}
.network-card:hover::before { transform: scaleX(1); }
.network-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,123,255,0.5);
  box-shadow: 0 25px 60px rgba(0,40,120,0.35),
              0 0 30px rgba(0,123,255,0.1);
}

.network-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,123,255,0.2), rgba(255,140,0,0.1));
  border: 1px solid rgba(0,123,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--secondary);
  margin: 0 auto 18px;
  transition: all 0.4s ease;
}
.network-card:hover .network-card-icon {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  transform: scale(1.1);
}

.network-card h5 {
  color: white;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.network-card p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.network-card-count {
  display: inline-block;
  background: rgba(255,140,0,0.15);
  border: 1px solid rgba(255,140,0,0.4);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
}