/* Mission & Vision Cards */
.mv-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mv-card i {
  font-size: 30px;
  color: #0b3c5d;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}

.mv-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* Hover Animation */
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.mv-card:hover i {
  transform: scale(1.2);
  color: #007bff;
}

/* subtle gradient border */
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(135deg, #0b3c5d, #00c6ff);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.mv-text-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  line-height: 1.8;
  color: #555;
}

