#interactive-section {
  text-align: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

.solutions-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #253081; /* White text for contrast against background image */
}

.solutions-subtitle {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 80px;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
}
/* --- Grid Container --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: auto;
  margin: 0 auto;
  /* Added slight background to the grid container itself */
  background-color: rgba(0, 0, 0, 0.3);
}

/* --- Solution Card Styling --- */

/* --- Solution Card Styling (Transparent cards against the grid's background image) --- */
.solution-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  z-index: 10;
}

/* Hover Effect for Cards */
.solution-card:hover {
  /* transform: translateY(-5px); */
  background-color: rgba(37, 48, 129, 0.234);
}

/* Icon Styling */
.solution-icon {
  /* width: 30px; */
  /* height: 30px; */
  margin-bottom: 10px;
  z-index: 2;
}

/* Heading Styling (White text for card, since card background is transparent/dark) */
.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  /* 🌟 KEY CHANGE: Set text to white */
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  z-index: 2;
}

.solution-card ul {
  color: #ffffffd6;
  font-size: 18px;
  font-weight: 600;
}
