.solutions-section {
  padding: 60px 0;
background: radial-gradient(circle at center, #2c2c54 0%, #24243e 40%, #0f0f1a 100%);
min-height:100vh;

align-items: center;
display:flex;
}

.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;  /* makes the column fill the row's height */
}

.text-light-muted {
  color: #cddbe7;   /* subtle grey */
  font-weight: 300; /* lighter text */
}



/* Spacing helpers to mimic Bootstrap 4+ */
.mb-4 { margin-bottom: 1.5rem !important; }   /* 24px */
.mb-3 { margin-bottom: 1rem !important; }     /* 16px */
.mt-4 { margin-top: 1.5rem !important; }


.row.g-4 {
  margin-top: 0; /* ensure no negative margins */
}

/* Each card styling */
.solution-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Fix overlapping */
  height: 100%;          
  margin-bottom: 30px;   /* ensures vertical gap */
}

/* Card hover */
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.solution-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.solution-card img {
  width:100%;
         /* fixed height ensures alignment */
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.solution-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-learn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background: #0056b3;
}
