/* =========================
   BASE
========================= */
:root {
  --primary: #0a2a43;
  --secondary: #00a6ff;
  --light: #f5f7fb;
  --dark: #061521;
  --white: #fff;
  --text: #333;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--light);
}

/* =========================
   HERO
========================= */
.vision-hero {
  position: relative;
  height: 70vh;
  background: url("../../image/vision/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.vision-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.bg-light {
  background: var(--light);
}

/* =========================
   SPLIT
========================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse * {
  direction: ltr;
}

.text h2 {
  margin-bottom: 15px;
  color: var(--primary);
}

.text ul {
  margin-top: 10px;
  padding-left: 20px;
}

.text ul li {
  margin-bottom: 8px;
}

.img img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
   GRID IMPACT
========================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.impact-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.impact-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.impact-card h3 {
  padding: 15px;
  color: var(--primary);
}

.impact-text {
  text-align: center;
  margin-top: 30px;
}

/* =========================
   QUOTE
========================= */
.quote {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;

.quote-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
}

.quote-section h2 {
  font-size: 28px;
  font-weight: 700;
  max-width: 900px;
  line-height: 1.4;
}