#branches {
  scroll-margin-top: 100px; /* apne header ki height ke hisaab se adjust karo */
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
}


/* Branch Cards */

.card {
 
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card-title {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.3rem;
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  padding: 4px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: linear-gradient(45deg, #128C7E, #25D366);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 1);
}