.about-vision {
  background-image: url(/images/girl1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 100vh;
  position: relative;
}

/* Optional Overlay for better text contrast */
.about-vision::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); /* Soft white overlay */
  z-index: 0;
}

.vision-box,
.description-box {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85); /* Glass effect */
  width: 90%;
  max-width: 800px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.vision-box:hover,
.description-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.vision-box {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  color: #2c3e50;
  font-weight: 600;
  letter-spacing: 1px;
}

.description-box {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
}

.description-box strong {
  color: #113d3c;
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}