/* Main Services Section */
.services-section {
    padding: 0 20px 60px;
    background: var(--background);
    text-align: center;
    position: relative;
  }
.services-section::after {
    content: '';
    position: absolute;
    left:25%;
    width: 50%;
    height: 1px;
    background-color: var(--secondary);
    box-shadow:  0px -0px 16px 2px var(--secondary);
    margin-top: 40px;
  }
  
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .services-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
 /* Initial animation for service card */
.service-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 30px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Hover effect on service card */
  .service-card:hover {
    background: var(--surface-hover); /* Change background color on hover */
    transform: scale(1.05); /* Scale the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  }
  
  .service-icon-container {
    background: var(--surface-hover);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: background 0.3s ease;
  }
  
  .service-icon-container:hover {
    background: var(--surface);
  }
  
  .service-icon {
    font-size: 40px;
    color: #fff;
  }
  
  .service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .service-description {
    font-size: 16px;
    color: var(--text-secondary);
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .background-circles {
      display: none;
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .services-title {
      font-size: 28px;
    }
  
    .service-card {
      padding: 20px;
    }
  
    .service-title {
      font-size: 18px;
    }
  
    .service-description {
      font-size: 14px;
    }
  }
  
  
  