section.services {
      padding: 100px 20px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    section.services h2 {
      font-family: 'Mansfield', serif;
      font-weight: 600;
      font-size: 36px;
      background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.19) 93%, rgba(255, 255, 255, 0) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    }

    section.services p.intro {
      max-width: 750px;
      margin: 0 auto 60px;
      font-weight: 300;
      font-size: 16px;
      line-height: 24px;
      color: #fff;
    }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 30px;
  justify-items: center; /* centers each card in its grid cell */
}
    
   

    .card {
      width: 340px;
      background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0.2) 100%);
      border-radius: 40px;
      padding: 40px 20px;
      text-align: center;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .card.highlight {
      background: #E3F919;
      color: #000;
    }

    .card-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto 20px;
      border-radius: 18px;
      background: #3E3E3E;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: #fff;
    }

    .card.highlight .card-icon {
      background: rgba(151, 151, 151, 0.4);
      color: #000;
    }

    .card h3 {
      font-family: 'Mansfield', serif;
      font-size: 20px;
      font-weight: 600;
      margin: 15px 0;
      color: #E3F919;
    }

    .card.highlight h3 {
      color: #000;
    }

    .card p {
      font-size: 16px;
      font-weight: 300;
      line-height: 22px;
      margin-bottom: 30px;
    }
    .card a{
      color: inherit;
      text-decoration: none;
    }
    .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: inherit;
      text-decoration: none;
      font-weight: 400;
    }

    .learn-more span {
      border-bottom: 1.5px solid currentColor;
      padding-bottom: 2px;
    }

    .apply-now::after {
      content: '→';
      font-size: 18px;
      color:  #E3F919;
    }

    .card:hover {
      transform: translateY(-10px);
    }
     
    @media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}