/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #121212;
    text-align: center;
  }
  
  .section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #00ffff;
    text-shadow: 0px 0px 15px rgba(0, 255, 255, 0.8);
  }
  
  /* Services Grid Layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  /* Service Card */
  .service-card {
    background-color: #1a1a1a;
    padding: 30px;
    border: 2px solid #00ffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 280px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
  }
  
  .service-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 255, 255, 0.05);
    pointer-events: none;
    transform: rotate(45deg);
    transition: all 0.5s ease;
  }
  
  .service-card:hover:before {
    background: rgba(0, 255, 255, 0.1);
    transform: rotate(0deg);
  }
  
  /* Service Icon */
  .service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  /* Service Card Title */
  .service-card h3 {
    font-size: 1.8rem;
    color: #00ffff;
    text-shadow: 0px 0px 10px rgba(0, 255, 255, 0.8);
    margin-bottom: 10px;
  }
  
  /* Service Description */
  .service-card p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.5;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  