.services-section {
    background: #f5f7fa; /* Light gray background */
    padding: 50px 0;
  }
  
  .service-1 {
    background: #ffffff; /* White card */
    border: 1px solid #e6e6e6; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 30px;
    margin-bottom: 20px;
    text-align: center; /* Center-align content */
    transition: all 0.3s ease; /* Smooth hover effect */
  }
  
  .service-1:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
  }
  
  .service-icon-placeholder {
    background: linear-gradient(135deg, #007bff, #00c6ff); /* Blue gradient for the icon */
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px; /* Center icon and add spacing */
  }
  
  .service-icon-text {
    color: #ffffff; /* White text */
    font-size: 20px;
    font-weight: bold;
  }
  
  .service-1__title {
    font-size: 18px;
    font-weight: 600;
    color: #333; /* Dark text */
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .service-1 {
      padding: 20px;
    }
  
    .service-1__title {
      font-size: 16px;
    }
  
    .service-icon-placeholder {
      width: 50px;
      height: 50px;
    }
  
    .service-icon-text {
      font-size: 16px;
    }
  }
  