/* ================= SECTION ================= */
.dairy-section {
  background: #f8fbff;
}

/* ================= SLIDER ================= */
.dairy-slider img {
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= TITLE ================= */
.section-title {
  font-weight: 600;
  color: #0d47a1;
}

.view-all {
  text-decoration: none;
  font-size: 14px;
  color: #1976d2;
  font-weight: 500;
}

.view-all:hover {
  color: #0d47a1;
}

/* ================= CARDS ================= */
.dairy-card {
  display: block;
  background: #ffffff;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.dairy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: linear-gradient(to right, #e3f2fd, #ffffff);
  color: #0d47a1;
}

/* Glow Effect */
.dairy-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -100%;
  left: -100%;
  background: radial-gradient(circle, rgba(25,118,210,0.15), transparent 70%);
  opacity: 0;
  transition: 0.5s;
}

.dairy-card:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .dairy-slider img {
    height: 220px;
  }
}