* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.about-section {
  padding: 40px 20px;
  /* background-image: url("../images/bgImg.jpg"); */
  background-color: #032f4e;
  text-align: center;
  color: white;
  padding-top: 160px;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.tech-card {
  border-left: 7px solid #032f4e;
  transition: all 0.3s ease-in-out;
}
.tech-card:hover {
  /* border-top: 5px solid #032f4e; */
  border-left: 7px solid #032f4e;
}

.tech-card h5 {
  color: #032f4e;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #013d67;
}

.services-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #013d67;
  position: relative;
  margin-bottom: 10px;
}

.heading-underline {
  width: 60px;
  height: 3px; /* starts thick */
  margin: 0 auto 20px auto;
  background: linear-gradient(to right, #013d67, #013d67);
  border-radius: 4px;
  animation: lineShrink 1s ease forwards;
}
