body {
  margin: 0;
  padding: 0;
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -5;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adjust the alpha (last value) to control the darkness */
}
.active {
  border-bottom: 1px solid blue;
}
.section_title {
  position: relative;
}

.section_title::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  z-index: -5;
  transform: translateX(-50%);
  width: 300px; /* Adjust the underline width */
  height: 2px; /* Adjust the underline height */
  background-color: #a3d4ff; /* Adjust the underline color */
  display: block;
  margin: 0 auto;
}

.section_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* Adjust the bold center width */
  height: 4px; /* Adjust the bold center height */
  background-color: #2a5082; /* Adjust the bold center color */
}
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card:hover {
  background-color: #004dda;
  color: white;
}
.card_svg {
  width: 100px;
  height: 100px;
}
.card_title {
  font-size: 16px;
  color: #2a5082;
}
.gray_text {
  color: gray;
  padding: 10px 0;
  font-weight: 400;
}
.card:hover .card_title {
  color: white;
}
.card:hover .card_text {
  display: none;
}
.card_hover_text {
  display: none;
}
.line {
  height: 2px;
  width: 100%;
  background-color: #a3d4ff;
}
.card:hover .card_hover_text {
  display: block;
  color: white;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  text-align: center;
}
.service {
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 10;
  background-image: linear-gradient(
    to bottom,
    rgba(174, 173, 173, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  ); /* Adjust the alpha (last value) to control the darkness */
}
