.solutions-section {
  background: #edf7fd;
  padding: 60px 0;
}
.solutions-title-red {
  color: #96071a;
}

.solutions-section h2,
.section-title {
  color: #00264d;
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  letter-spacing: 0.5px;
}
.section-title .section-underline {
  display: block;
  margin: 12px auto 0 auto;
  width: 60px;
  height: 5px;
  background: #96071a;
  border-radius: 2px;
  content: "";
}
.solutions-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.solution-block {
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 350px;
  background: #fff;
  border: none; /* Removed stroke/border completely */
  border-radius: 12px; /* Kept curved edges */
  padding: 16px 14px 22px 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Kept drop shadow */
}
.solution-block h3 {
  color: #96071a;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 50px;
  transition: color 0.3s;
}
.solution-block img {
  width: 100%;
  max-height: 170px;
  object-fit: cover;
  margin-bottom: 14px;
  border: 1px solid #bbb;
  border-radius: 8px; /* Kept curved edges for images */
  background: #eee;
  display: block;
  transition: border-color 0.3s;
}
.solution-block p {
  color: #00264d;
  font-size: 1rem;
  margin-top: 0;
  transition: color 0.3s;
  text-align: justify; /* ADDED: Justify text alignment */
}
/* Hover Effect */
.solution-block:hover {
  background: #00264d;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 89, 135, 0.2); /* Enhanced drop shadow on hover */
  transform: translateY(-5px); /* Slight lift effect on hover */
}
.solution-block:hover h3,
.solution-block:hover p {
  color: #fff;
}
.solution-block:hover img {
  border-color: #fff;
}
/* Responsive */
@media (max-width: 1050px) {
  .solutions-cards {
    flex-direction: column;
    gap: 26px;
    align-items: center;
  }
  .solution-block {
    max-width: 98vw;
  }
}

/* Last updated: 2025-08-07 07:06:21 by Chandali-Dasanayaka */
