/* ================= VISION MISSION ================= */
.vision-mission {
  padding: 70px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
  position: relative;
}

/* underline animation */
.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #0b2e59;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: underlineMove 2s infinite alternate;
}

@keyframes underlineMove {
  from { width: 50px; }
  to { width: 120px; }
}

/* Layout */
.vm-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card Style */
.vm-card {
  flex: 1 1 420px;
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s ease forwards;
}

/* Hover Effect */
.vm-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

/* Top Gradient Line */
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0b2e59, #1c5fa8);
}

/* Heading */
.vm-card h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #0b2e59;
  letter-spacing: 1px;
}

/* Vision Text */
.vm-card p {
  text-align: center;
  font-size: 16px;
  color: #222;
  line-height: 1.7;
  font-weight: 500;
}

/* Mission List */
.vm-card ul {
  padding-left: 20px;
}

.vm-card ul li {
  margin-bottom: 14px;
  color: #222;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 10px;
}

/* Custom Bullet */
.vm-card ul li::before {
  content: "✔";
  position: absolute;
  left: -18px;
  color: #0b2e59;
  font-size: 14px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay animation */
.vm-card:nth-child(1) {
  animation-delay: 0.2s;
}
.vm-card:nth-child(2) {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .vm-card {
    padding: 25px;
  }
}