
.services {
  background: #ffffff;
  padding: 120px 8%;
}

.services .section-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 70px;
}

.services .section-header h2 {
  font-size: 58px;
  font-family: 'Inter', sans-serif;
  color: #061f20;
  margin: 20px 0;
}

.services .section-header p {
  color: #6b6b6b;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  background: #ffffff;
  padding: 45px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.4s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0%;
  background: #e5091b;
  transition: 0.4s;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.service-number {
  font-size: 70px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: rgba(229,9,27,0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 28px;
  font-family: 'Inter', sans-serif;
  color: #061f20;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}


@media(max-width: 992px){

  .services-grid{
    grid-template-columns: 1fr;
  }

  .services .section-header h2{
    font-size: 40px;
  }

}
