.services-section {
    position: relative;
    background: url("../assets/services-bg.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 20px;
    overflow: hidden;
  }
  
  .services-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }
  
  .services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .services-content p {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: #fff;
    color: #333;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
  }
  
  .service-card:hover {
    background: #1a2a6c;
    color: #fff;
    transform: translateY(-5px);
  }
  
  .service-card:hover .service-icon,
  .service-card:hover .read-more {
    color: #fff;
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a2a6c;
    transition: color 0.3s;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .read-more {
    font-size: 1rem;
    text-decoration: none;
    color: #1a2a6c;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  