.our-vision-section {
  background:linear-gradient(135deg, #10223f, #13f);
  padding: 80px 30px;
  font-family: 'Poppins', sans-serif;
  color: #102240;
  position: relative;
  overflow: hidden;
}

.vision-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.our-vision-section h2 {
  text-align: center;
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 25px;
}

.vision-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* Decorative BG Design (optional shapes) */
.our-vision-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.our-vision-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(13, 71, 161, 0.1);
  border-radius: 50%;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .our-vision-section {
    padding: 50px 20px;
  }

  .vision-container {
    padding: 30px 20px;
  }

  .our-vision-section h2 {
    font-size: 26px;
  }

  .vision-container p {
    font-size: 15px;
  }
}
