/* ========== OUR VISION — HERO SECTION ========== */

.vision-hero {
  position: relative;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 0px 64px;
  box-sizing: border-box;

  /* Background image */
  background-image: url("../css/image/our-vision-hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  color: #ffffff;
  font-family: var(--font-roboto, Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
  text-align: left;
}

/* Dark overlay on top of the image */
.vision-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.vision-hero__container {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.vision-hero__heading {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 700;
}

.vision-hero__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 900px) {
  .vision-hero {
    padding: 72px 24px;
    min-height: 260px;
  }

  .vision-hero__container {
    max-width: 100%;
  }
}

/* SECTION WRAPPER */
.ov-story {
  width: 100%;
  background: #11284c;
  color: #fff;
  padding: 120px 64px;
  font-family: Roboto, sans-serif;
}

/* CONTAINER */
.ov-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 120px;
}

/* LEFT SIDE */
.ov-left {
  flex: 1;
}

.ov-tag {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.ov-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 32px;
}

/* GLASS BUTTON */
.glass-btn {
  padding: 10px 26px;
  border-radius: 0px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.glass-btn:hover {
  background: rgba(255,255,255,0.18);
}

/* Explore button */
.ov-explore {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
  text-decoration: none;
}

.ov-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* TIMELINE */
.ov-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ov-item {
  display: flex;
  gap: 28px;
}

/* Rail with icon + line */
.ov-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ov-icon {
  width: 40px;
  height: 40px;
}

/* Vertical connecting line */
.ov-line {
  width: 2px;
  height: 110px; /* adjust for spacing */
  background: rgba(255,255,255,0.5);
  margin-top: 10px;
}

/* TEXT */
.ov-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.ov-text p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 420px;
}

/* Last item: remove vertical line */
.ov-item:last-child .ov-line {
  display: none;
}

/* ============= WHY SPLEXX — CLEAN, MODERN, CENTERED LAYOUT =============== */

.ov-why {
  width: 100%;
  background: #fff;
  padding: 112px 64px;
  box-sizing: border-box;
  font-family: var(--font-roboto, Roboto, sans-serif);
  color: #000;
}

/* Container */
.ov-why__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* =========================
   HEADER
   ========================= */
.ov-why__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ov-why__tag {
  font-size: 14px;
  font-weight: 600;
}

.ov-why__heading {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 32px;
}

.ov-why__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ov-why__text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   THREE-COLUMN GRID
   ========================= */
.ov-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  width: 100%;
}

/* Each Column */
.ov-why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Image */
.ov-why__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* Body */
.ov-why__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.ov-why__item-heading {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.ov-why__item-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 90%;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .ov-why {
    padding: 96px 32px;
  }

  .ov-why__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ov-why__item {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .ov-why {
    padding: 80px 24px;
  }

  .ov-why__heading {
    font-size: clamp(26px, 7vw, 34px);
  }

  .ov-why__text {
    font-size: 16px;
  }

  .ov-why__image {
    height: 200px;
  }
}

