/* Unified Card Styles (about us page ) */


.bcard {
  background: linear-gradient(135deg, #181c24, #121620);
  padding: 25px 30px;
  border-radius: 12px;
  color: #e4e7ec;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, box-shadow 0 0 25px 8px rgba(111,155,250,0.6) ease, color 0.3s ease, transform 0.3s ease;
}
.bcard:hover {
  background: #6f9bfa;
  color: #ffffff;
      box-shadow: 0 0 15px rgba(85, 165, 255, 0.3);
      transform: translateY(-5px);
}
.bcard h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: inherit;
}
.bcard p {
  font-weight: 400;
  line-height: 1.4;
  font-size: 0.95rem;
  color: inherit;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .bcard {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

.acard {
  background: linear-gradient(135deg, #181c24, #121620);
  padding: 25px 30px;
  border-radius: 12px;
  color: #e4e7ec;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, box-shadow 0 0 25px 8px rgba(111,155,250,0.6) ease, color 0.3s ease, transform 0.3s ease;
}
.acard:hover {

  color: #ffffff;
      box-shadow: 0 0 15px rgba(85, 165, 255, 0.3);
      transform: translateY(-5px);
}
.acard h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: inherit;
}
.acard p {
  font-weight: 400;
  line-height: 1.4;
  font-size: 0.95rem;
  color: inherit;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .acard {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

