/* General */
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.service-section {
  padding: 40px 20px;
  /* background-image: url("../images/bgImg.jpg"); */
  background-color: #032f4e;
  text-align: center;
  color: white;
  padding-top: 160px;
}

.service-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services-subtext {
  font-size: 1rem;
  font-weight: 300;
  color: #cce3f6;
}

.service-card {
  border-left: 5px solid #032f4e;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: #f8f9fa;
}

h4 {
  color: #032f4e;
}

footer.footer {
  background-color: #032f4e;
  color: white;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 576px) {
  .service-card i {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .service-card .col-md-2 {
    margin-bottom: 1rem;
  }

  .service-card .col-md-10 {
    text-align: center;
  }
}
.services-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #013d67;
  position: relative;
  /* margin-bottom: 5px; */
}

.heading-underline {
  width: 60px;
  height: 6px; /* starts thick */
  margin: 0 auto 20px auto;
  background: linear-gradient(to right, #013d67, #013d67);
  border-radius: 4px;
  animation: lineShrink 1s ease forwards;
}
