
  /* ========== SERVICES SECTION ========== */
.services {
    padding: 100px 5%;
    background: #0a0a0f;
    position: relative;
  }
  
.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
  
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
  
.service-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
  
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #fbbf24, #f97316);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
  
  .service-card:hover::before {
    transform: scaleX(1);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  }
  
  .service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  }
  
  .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  }
  
  .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #f97316 0%, #991b1b 100%);
  }
  
  .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
  }
  
  .service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .service-features {
    list-style: none;
    margin-top: 1rem;
  }
  
  .service-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .service-features li::before {
    content: '✓';
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.1rem;
  }


  /* ABOUT VISUDEN SECTION */
.about-visuden {
    padding: 100px 20px;
    background: linear-gradient(135deg, 
      #f8f9fa 0%, 
      #ffffff 25%, 
      #f0f2f5 50%, 
      #ffffff 75%, 
      #f8f9fa 100%);
    position: relative;
    overflow: hidden;
  }
  
  .about-visuden::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(240, 242, 245, 0.6) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: -1px;
  }
  
  .about-description {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  
  .about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .feature-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-text {
    font-size: 0.95rem;
    color: #718096;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .about-visuden {
      padding: 60px 20px;
    }
  
    .about-features {
      gap: 20px;
    }
  
    .about-feature-item {
      padding: 15px 20px;
      width: 100%;
      max-width: 300px;
    }
  }
  
  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .patterns-container {
      gap: 1.5rem;
    }
  
    .pattern {
      width: 140px;
      height: 140px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      justify-content: center;
      gap: 3rem;
      padding: 120px 5% 60px;
    }
  
    .hero-content {
      text-align: center;
    }
  
    .patterns-container {
      flex-direction: row;
      gap: 1rem;
    }
  
    .pattern {
      width: 100px;
      height: 100px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .pattern {
      width: 80px;
      height: 80px;
    }
}