/* ================= BREADCRUMB ================= */
.breadcrumb-wrapper {
  padding: 8px 0;
}

.doodh-breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.doodh-breadcrumb .breadcrumb-item a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}

.doodh-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.doodh-breadcrumb .breadcrumb-item.active {
  color: #555;
}

/* Custom separator */
.doodh-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #999;
  padding: 0 6px;
}

/* ================= HERO ================= */
.about-hero {
  background: linear-gradient(to right, #0d47a1, #1976d2);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

/* ================= CARDS ================= */
.about-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.about-card i {
  font-size: 28px;
  color: #1976d2;
  margin-bottom: 10px;
}

.about-card:hover {
  transform: translateY(-6px);
}

/* ================= WHY ================= */
.why-box {
  background: #f1f6ff;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.why-box:hover {
  background: #1976d2;
  color: #fff;
}

/* ================= CTA ================= */
.about-cta {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ================= BUTTON ================= */
.btn-primary {
  background: #1976d2;
  border: none;
}

.btn-primary:hover {
  background: #0d47a1;
}