
 /* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}   .core-values {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
  color: #0f172a;
}

.section-title {
  font-size: 32px;
  color: #003366;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #003366;
  margin: 12px auto 0;
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.value-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card i {
  font-size: 28px;
  color: #003366;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003366;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
/* ===== STRATEGIC SECTION ===== */
.strategic-section {
  padding: 60px 20px;
  background: #f0f4f8; /* subtle light background */
  color: #003366;
}

.strategic-container {
  display: flex;
  gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
  flex-wrap: wrap; /* responsive stacking */
}

/* ===== CARD BASE ===== */
.card {
  flex: 1 1 48%; /* two cards side by side */
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

/* ===== CARD HEADER ===== */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-header i {
  font-size: 28px;
  color: #003366; /* brand blue */
}

.card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #003366;
}

/* ===== CARD CONTENT ===== */
.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card ul li {
  position: relative;
  font-size: 14px;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #334155;
}

/* Circular bullet */
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px; /* vertically center */
  width: 10px;  /* circle size */
  height: 10px; /* circle size */
  background-color: #003366; /* brand blue */
  border-radius: 50%; /* make it circular */
}


/* ===== SPECIFIC CARD COLORS (OPTIONAL) ===== */
.goal-card { border-top: 4px solid #003366; }
.issues-card { border-top: 4px solid #003366; }

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
  .card {
    flex: 1 1 100%;
  }
  .card-header h3 {
    font-size: 18px;
  }
  .card p,
  .card ul li {
    font-size: 13px;
  }
  .card-header i {
    font-size: 24px;
  }
}


/* ====== Core Value ====== */
  .core-values {
  padding: 80px 40px;
  background: #f8f9fa;
}

.core-values .section-title {
  font-size: 2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.core-card {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.core-card h4 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.core-card h4 i {
  color: #003366;
  font-size: 1.4rem;
}

.core-card p {
  font-size: 0.95rem;
  color: #003366;
  line-height: 1.6;
}