/* ======================
   Text above the cards
====================== */
.cards-header {
  text-align: center;       /* center the title and paragraph */
  margin-bottom: 10px;      /* reduce space between text and cards */
}

.cards-header h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 5px;       /* reduce space below the title */
}

.cards-header p {
  font-size: 16px;
  color: #555;
  margin: 0;                /* remove default margin */
}

/* ======================
   Cards
====================== */
.solution-card {
  border: 4px solid #003366;    /* thick dark blue border */
  border-radius: 15px;           /* rounded corners */
  padding: 20px;
  text-align: center;
  min-height: 300px;             /* minimum height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  box-sizing: border-box;
  /*margin-right: 150px;      */      /* space between cards */
}

/* Remove right margin for the last card */
.solution-card:last-child {
  margin-right: 0;
}

/* Card title */
.solution-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Card text */
.solution-card p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Card button */
.solution-card .card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.solution-card .card-button:hover {
  background-color: #0055a5;
}

/* ======================
   Center circle
====================== */
.why-choose-container {
  position: relative;
  margin-top: -60px; /* adjust to move the circle above the cards */
  z-index: 10;       
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 51, 102, 1);
  color: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3em;
  z-index: 10;
}