/* HERO */
.services-hero{
  padding:160px 0 120px;
  background:linear-gradient(180deg,#07131f,#02060c);
  text-align:center;
}

.services-hero h1{
  font-size:56px;
  margin-bottom:16px;
}

.services-hero p{
  max-width:640px;
  margin:0 auto;
  font-size:18px;
  color:rgba(234,242,255,.75);
}

/* GRID */
.services{
  padding:140px 0;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:60px;
}

/* CARD */
.service-card{
  background:#07131f;
  border-radius:22px;
  overflow:hidden;
  text-decoration:none;
  color:#eaf2ff;
  border:1px solid rgba(255,255,255,.08);
  transition:.4s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:#d8b15a;
}

.service-image{
  height:260px;
  background-size:cover;
  background-position:center;
}

.service-content{
  padding:36px;
}

.service-content h2{
  font-size:26px;
  margin-bottom:14px;
}

.service-content p{
  font-size:16px;
  line-height:1.7;
  color:rgba(234,242,255,.75);
}

.service-btn{
  display:inline-block;
  margin-top:18px;
  font-weight:600;
  color:#d8b15a;
}

/* RESPONSIVE */
@media(max-width:900px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .services-hero h1{
    font-size:40px;
  }
}
