.bg-brand {
  background-color: #808080 !important; /* Apna brand color */
}
.btn-brand {
  background-color: #08395b;
  color: #fff;
  border: none;
}

.btn-brand:hover {
  background-color: #062b44; /* thoda dark shade hover pe */
  color: #fff;
}
/* Navbar links custom style */
.navbar-nav .nav-link {
  color: #08395b !important;   /* Custom brand color */
  font-weight: bold;           /* Bold text */
  font-size: 25px;             /* Bada font */
  margin-left: 12px;           /* Thoda gap between links */
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  color: #062b44 !important;   /* Thoda darker shade on hover */
}


/* Navbar brand (logo/text) */
.navbar-brand {
  color: #08395b !important;
  font-weight: 700;
  font-size: 10px;
  }
/* Headings + Navbar */
h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Paragraph aur normal text ke liye Poppins */
body, p, a, li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
footer ul li {
  margin-bottom: 8px;
}

footer ul li i {
  color: #fef4e6; /* icon ka color (yellow in this case) */
}

.tracking-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tracking-card {
  position: relative;
  border-left: 3px solid #08395b;
  padding-left: 30px;
}

.tracking-item {
  margin-bottom: 30px;
  position: relative;
}

.tracking-item .dot {
  position: absolute;
  left: -12px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ccc;
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.tracking-item.completed .dot {
  background: green;
}

.tracking-item.active .dot {
  background: #08395b;
  box-shadow: 0 0 12px rgba(8,57,91,0.6);
}

.tracking-item .info {
  margin-left: 10px;
}

.tracking-item .info h5 {
  margin: 0;
  font-weight: 600;
  color: #08395b;
}

.tracking-item .info span {
  font-size: 13px;
  color: #555;
}

body {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  
}

.navbar-nav .nav-link {
  position: relative;
  color: #08395b !important;
  font-weight: bold;
  font-size: 18px;
  margin-left: 10px;
  text-decoration: none;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #08395b;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;   /* slide full width */
}
/* Footer Links Slide-In Effect */
footer a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 3px; /* thoda space underline ke liye */
}

footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffffff; /* underline ka color */
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%; /* hover karte hi left to right underline */
}



