:root {
  --primary-color: #eb0028;
  --secondary-color: #1b1b1b;
  --accent-color: #00bcd4;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #ffffff;
  --bg-gray: #f9f9f9;
}


.page-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  height: 300px;
  color: #fff;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.page-title .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.157), rgba(0, 0, 0, 0.167));
  z-index: 0;
}

.page-title .auto-container {
  position: relative;
  z-index: 2;
}

.page-title .main-heading {
  font-size: 56px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.page-title .separator {
  width: 80px;
  height: 4px;
  background: #eb0028;
  margin: 0 auto;
  border-radius: 4px;
}

/* Breadcrumb Styling */
.breadcrumb-outer {
  background-color: #f9f9f9;
  padding: 15px 0;
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.breadcrumb-outer .bread-crumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

.breadcrumb-outer .bread-crumb li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-outer .bread-crumb a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-outer .bread-crumb a:hover {
  color: #eb0028;
}

.breadcrumb-outer .bread-crumb .current {
  color: #999;
  font-weight: 600;
}