/* services.css */
.services-section {
    padding: 4rem 3.5rem;
    /* background-color: #fff; */
    background-color: #cfcfcf0c;
    position: relative;
    z-index: 1;
  }
  
  .services-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--yellow);
    position: relative;
    display: inline-block;
  }
  
  .services-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--blue);
  }
  
  /* .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  } */

  .services-container {
    display: grid;
    gap: 2rem;
    
    /* Mobile: 1 card (min 250px) */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
    /* Tablet: Force 2 columns */
    @media (min-width: 600px) and (max-width: 899px) {
      grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
    
    /* Laptop: Force 3 columns */
    @media (min-width: 900px) {
      grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
  }
  
  .service-card {
    background-color: var(--bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-card i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
  }
  
  .service-card p {
    font-size: 0.9rem;
    color: #555;
  }

  .btn-wrapper {
    display: flex;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
  }

  .btn-wrapper a {
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .services-section {
      padding: 3rem 1.5rem;
    }
    
    .services-container {
      grid-template-columns: 1fr;
    }
  }


  /* ......... */
  /* Additional styles for the enhanced services section */
.services-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-price {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--yellow);
    font-size: 0.9rem;
  }
  
  .service-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--blue);
    border-radius: 8px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .service-cta p {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .service-cta .cta-btn {
    background-color: white;
    color: var(--blue);
    font-weight: bold;
  }
  
  .service-cta .cta-btn:hover {
    background-color: var(--yellow);
    color: white;
  }
  
  /* Adjust grid for more cards */
  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }