/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'MuseoModerno', sans-serif;
  padding-top: 72px;
}


/* Hero Section */ .heading-container { background-color: #d9f2ff; text-align: center; padding: 40px 20px 80px; } .heading-container h1 { font-size: 2.5rem; margin-bottom: 20px; color: #003366; } .heading-container p { font-size: 1.1rem; color: #003366; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* Involvement Section */
.involve-section {
  padding: 10px 50px;
  background: #d9f2ff; /* light blue background */
}

.involve-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.involve-card {
  flex: 1 1 calc(33.333% - 40px);
   display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #d9f2ff; /* same as section to blend seamlessly */
  border: none;
  padding: 10px 15px;
  transition: transform 0.3s ease;
}

.involve-card:hover {
  transform: translateY(-5px);
}

.involve-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* make them perfectly round */
  object-fit: cover;
  margin-bottom: 10px;
  border: 5px solid #ffffff; /* optional white border for contrast */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.involve-card h4 {
  font-size: 1.3rem;
  color: #003366;
  margin: 10px 0 5px 0;
}

.involve-card p {
  font-size: 1rem;
  color: #003366;;
   margin: 0 0 15px 0;
  line-height: 1.5;
  font-weight: 300;
}

.involve-card button {
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.involve-card button:hover {
  background-color: #005f90;
}

/* Responsive */
@media (max-width: 900px) {
  .involve-container {
    flex-direction: column;
    align-items: center;
  }

  .involve-card {
    flex: 1 1 100%;
    max-width: 400px;
  }
}

/* Bank Section */
.bank-section {
  position: relative;
  width: 100%;
  height: 480px;
  background: url('images/beinvolved4.avif')
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Overlay text */
.bank-overlay {
  position: relative;
  z-index: 2;
  color: #003366;
}

.bank-overlay h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.bank-overlay h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.bank-overlay p {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 3px;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .bank-section {
    height: 320px;
  }

  .wave-container {
    height: 120px;
  }

  .bank-overlay h2 {
    font-size: 1.5rem;
  }
  .bank-overlay h3 {
    font-size: 1.3rem;
  }
  .bank-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .bank-section {
    height: 260px;
  }

  .wave-container {
    height: 100px;
  }

  .bank-overlay h2 {
    font-size: 1.2rem;
  }
  .bank-overlay h3 {
    font-size: 1rem;
  }
  .bank-overlay p {
    font-size: 0.9rem;
  }
}
