* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: url('assets/imgs/mission.png') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

}
.hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 3rem 1rem;
  border-radius: 6px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;

}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Section Styles */
section {
  padding: 3rem 0;
}
.intro-section p,
.content-section p {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

/* ================= MISSION / VISION BLOCK ================= */
.mission-block {
    background: #f9f9f9;
}

/* card */
.mv-card {
    background: #fff;
    padding: 20px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* hover effect */
.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* icon circle */
.mv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(0, 86, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i {
    font-size: 22px;
    color: #00563F;
}

/* headings */
.mv-card h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* text */
.mv-card p {
    font-size: 14.5px;
    color: #555;
}
/* ================= CORE VALUES JUMBOTRON ================= */
.values-jumbotron {
    background: linear-gradient(135deg, #00563F, #0a7a5a);
    padding: 50px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* subtle light overlay */
.values-jumbotron::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.1), transparent 60%);
}

/* content layer */
.values-jumbotron > * {
    position: relative;
    z-index: 2;
}

/* list layout */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* each item */
.value-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

/* hover */
.value-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

/* number */
.value-item span {
    font-weight: 700;
    font-size: 18px;
    color: #E6A400;
    min-width: 40px;
}

/* title */
.value-item h5 {
    margin-bottom: 3px;
    font-weight: 600;
}

/* text */
.value-item p {
    margin: 0;
    font-size: 14.5px;
    color: rgba(255,255,255,0.85);
}
/* ================= PARALLAX CTA ================= */
.parallax-cta {
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    url('assets/imgs/daughters with M.Rosa.png') center/cover no-repeat;

    min-height: 60vh;

    background-attachment: fixed; /* PARALLAX */
    background-position: center;
    background-size: cover;

    position: relative;
}

/* content spacing */
.parallax-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.parallax-cta p {
    max-width: 600px;
    margin: 10px auto 20px;
    opacity: 0.9;
}

/* button hover (consistent with your CTA style) */
.parallax-cta .btn:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-2px);
}
