/* === BACKGROUND === */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ff6b6b, #5f27cd);
    background-size: cover;
    z-index: -9999;
    pointer-events: none;
  }
  
  /* === REMOVE BACKGROUNDS FROM WRAPPERS === */
  html, body,
  #__next, .app-wrapper, .homepage-container {
    background: none !important;
    background-color: transparent !important;
  }
  
  /* === SERVICE CARDS ONLY (not inner elements) === */
  .service-card {
    background: rgba(255, 255, 255, 0.);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    padding: 16px;
    transition: all 0.3s ease;
  }
  
  /* === HOVER EFFECT === */
  .service-card:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
  }
  
  /* === SECTION TITLES === */
  .section-title,
  h1, h2, h3 {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 12px;
  }
  
  /* === TEXT === */
  p, span, .info, .status {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  }
  
  /* === OPTIONAL: REMOVE BACKGROUND FROM INNER ELEMENTS === */
  .service-card * {
    background: transparent !important;
    box-shadow: none !important;
  }