
/* ===============================
   Vision & Mission Section Style
   =============================== */
.li {
  text-align: justify !important;
}


.vision-mission-section {
  position: relative;
  background: linear-gradient(135deg, #eef2f3, #dfe9f3);
  overflow: hidden;
}

.vision-mission-section::before,
.vision-mission-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.1);
}

.vision-mission-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.vision-mission-section::after {
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: -80px;
}

/* Card Styles */
.vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.85) !important;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
}

.vision-card h4,
.mission-card h4 {
  color: #004b6b;
  font-weight: 700;
}

.vision-card p {
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

.mission-card ul {
  padding-left: 0;
  margin: 0;
}

.mission-card ul li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
}

.mission-card ul li i {
  color: #0d6efd;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .vision-card,
  .mission-card {
    text-align: center;
  }

  .mission-card ul li {
    justify-content: center;
  }
}


