/* ================= Vision & Values ================= */
.vision-values-section {
  position: relative;
  background: url("../images/vision-bg.jpg") no-repeat center center/cover;
  color: #fff;
  min-height: 80vh;
  display: flex;
  padding: 40px 20px;
}

.vision-values-section .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; /* 2 rows */
  max-width: 1200px;
  margin: 0 auto;
}

/* Top-right box (Our Vision) */
.vision {
  grid-column: 2; /* right column */
  grid-row: 1; /* top row */
  direction: ltr;
  align-self: start;
  justify-self: end;
  margin-top: 20px;
  unicode-bidi: plaintext;
}

/* Bottom-left box (Core Values & Philosophy) */
.values {
  grid-column: 1; /* left column */
  grid-row: 2; /* bottom row */
  text-align: left;
  direction: ltr;
  align-self: end;
  justify-self: start;
  margin-bottom: 20px;
}

/* Shared styles */
.values,
.vision {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
}

.vision-values-section .sub-title {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #e8e8e8;
  margin-bottom: 16px;
}

.vision-values-section p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #c6c6c6;
  opacity: 0.8 !important;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .values,
  .vision {
    grid-column: 1;
    grid-row: auto;
    text-align: left; /* ✅ force left align */
    justify-self: start; /* ✅ stick to left side */
    align-self: start;
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  .vision-values-section {
    min-height: auto;
    padding: 60px 20px;
  }
  .sub-title {
    font-size: 20px;
  }
  .vision-values-section p {
    font-size: 14px;
  }
}
