/* ====== CORE VALUES SECTION ====== */
/* ====== 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-section {
  padding: 60px;
  background-color: #fff;
 text-align: justify;
  overflow: hidden;
}

/* Section title styling like About */
.core-values-section .section-title {
  font-size: 2.2rem;
  color: #003366;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateX(-50px);
}

.core-values-section .section-title .underline {
  display: block;
  width: 50px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  opacity: 0;
  transform: translateX(50px);
}

/* Core values cards */
.core-values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.core-card {
  flex: 1 1 45%;
  background: #f9f9f9;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  text-align: justify;
}

.core-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.core-card h4 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 8px;

}

.core-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #003366;
  text-align: justify;
}

/* Responsive */
@media (max-width: 900px) {
  .core-values-container {
    flex-direction: column;
  }
  .core-card {
    flex: 1 1 100%;
  }
}
