* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #fff;
    background: #0a0a0f;
    min-height: 100vh;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0f2e 100%);
    z-index: -1;
  }
  .hero{
    display: none !important;
  }
  
  .removebg-hero {
    min-height: 100vh;
    padding: 120px 5% 80px; /* Added top padding for header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .container { 
    max-width: 1200px; 
    width: 100%; 
  }
  
  .gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-title { 
    font-size: clamp(2.5rem, 7vw, 5rem); 
    font-weight: 800; 
    margin-bottom: 1.5rem; 
    line-height: 1.2;
  }
  
  .hero-subtitle { 
    font-size: 1.25rem; 
    color: rgba(255,255,255,0.7); 
    margin-bottom: 3rem; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
  }
  
  .drop-zone {
    border: 3px dashed rgba(139, 92, 246, 0.4);
    border-radius: 24px;
    padding: 4rem 2rem;
    background: rgba(139, 92, 246, 0.05);
    cursor: pointer;
    transition: all 0.4s ease;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .drop-zone:hover {
    border-color: rgba(139, 92, 246, 0.7);
    background: rgba(139, 92, 246, 0.1);
  }
  
  .drop-zone.dragover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.15);
    transform: scale(1.02);
  }
  
  .drop-text svg { 
    color: #8b5cf6; 
    margin-bottom: 1rem; 
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .drop-text p { 
    font-size: 1.5rem; 
    margin: 1rem 0; 
  }
  
  .browse-link { 
    color: #ec4899; 
    text-decoration: underline; 
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    padding: 0;
  }
  
  #file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .drop-text small { 
    color: rgba(255,255,255,0.5); 
    font-size: 0.9rem; 
    display: block;
    margin-top: 1rem;
  }
  
  .hidden { 
    display: none !important; 
  }
  
  .progress-container {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
  }
  
  .progress-container p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .progress-bar {
    height: 12px;
    background: rgba(139,92,246,0.2);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 1rem;
  }
  
  .progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    transition: width 0.4s ease;
  }
  
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1400px;
  }
  
  .result-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
  }
  
  .preview-original, .preview-result {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
  }
  
  .preview-original { 
    background: rgba(255,255,255,0.05); 
  }
  
  .preview-result { 
    background: 
      linear-gradient(45deg, #ccc 25%, transparent 25%),
      linear-gradient(-45deg, #ccc 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #ccc 75%),
      linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #fff;
    position: relative; 
  }
  
  .result-card img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 0.5rem;
  }
  
  .result-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
  }
  
  .loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(139,92,246,0.3);
    border-top: 4px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
  }
  
  @keyframes spin { 
    to { transform: rotate(360deg); } 
  }
  
  .error {
    color: #ff6b6b !important;
  }
  
  .download-all-container {
    position: sticky;
    bottom: 20px;
    margin: 2rem 0;
    text-align: center;
    z-index: 100;
    padding: 1rem;
  }
  
  .cta-button {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.6);
    position: relative;
  }
  
  .cta-button::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
  }
  
  .cta-button:hover::before {
    opacity: 0.7;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.8);
  }
  
  .cta-button:active {
    transform: translateY(-1px);
  }
  
  .cta-button.large {
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
  }
  
  .cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover .arrow {
    transform: translate(3px, -3px);
  }
  
  /* SUCCESS ACTIONS SECTION */
  .success-actions {
    margin: 4rem auto;
    max-width: 900px;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
  }
  
  .action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  
  .action-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    font-family: inherit;
  }
  
  .action-btn svg {
    transition: transform 0.3s ease;
  }
  
  .action-btn.primary {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  }
  
  .action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
  }
  
  .action-btn.primary:hover svg {
    transform: translateY(2px);
  }
  
  .action-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(139, 92, 246, 0.3);
  }
  
  .action-btn.secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
  }
  
  .action-btn.secondary:hover svg {
    transform: translateX(-3px);
  }
  
  /* SOCIAL SHARING */
  .social-sharing {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
  }
  
  .share-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
  }
  
  .social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .social-btn:hover {
    transform: translateY(-5px) scale(1.1);
  }
  
  .social-btn:active {
    transform: translateY(-2px) scale(1.05);
  }
  
  .social-btn.facebook {
    color: #1877f2;
  }
  
  .social-btn.facebook::before {
    background: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  }
  
  .social-btn.facebook:hover::before {
    opacity: 0.2;
  }
  
  .social-btn.twitter {
    color: #1da1f2;
  }
  
  .social-btn.twitter::before {
    background: #1da1f2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
  }
  
  .social-btn.twitter:hover::before {
    opacity: 0.2;
  }
  
  .social-btn.linkedin {
    color: #0a66c2;
  }
  
  .social-btn.linkedin::before {
    background: #0a66c2;
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
  }
  
  .social-btn.linkedin:hover::before {
    opacity: 0.2;
  }
  
  .social-btn.pinterest {
    color: #e60023;
  }
  
  .social-btn.pinterest::before {
    background: #e60023;
    box-shadow: 0 8px 25px rgba(230, 0, 35, 0.4);
  }
  
  .social-btn.pinterest:hover::before {
    opacity: 0.2;
  }
  
  .social-btn.whatsapp {
    color: #25d366;
  }
  
  .social-btn.whatsapp::before {
    background: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  
  .social-btn.whatsapp:hover::before {
    opacity: 0.2;
  }
  
  .social-btn.reddit {
    color: #ff4500;
  }
  
  .social-btn.reddit::before {
    background: #ff4500;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
  }
  
  .social-btn.reddit:hover::before {
    opacity: 0.2;
  }
  
  .social-btn svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  
  /* RECOMMENDED SERVICES */
  .recommended-services {
    margin: 4rem auto;
    max-width: 1200px;
    animation: fadeInUp 0.6s ease;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .recommendations-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card-compact {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .service-card-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .service-card-compact:hover::before {
    opacity: 1;
  }
  
  .service-card-compact:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
  }
  
  .service-icon-compact {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
    transition: transform 0.3s ease;
  }
  
  .service-card-compact:hover .service-icon-compact {
    transform: scale(1.1) rotate(5deg);
  }
  
  .service-title-compact {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
  }
  
  .service-description-compact {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }
  
  /* RESPONSIVE DESIGN */
  @media (max-width: 768px) {
    .results-grid { 
      grid-template-columns: 1fr; 
    }
    
    .drop-zone { 
      padding: 3rem 1rem; 
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .cta-button.large {
      padding: 1.2rem 2.5rem;
      font-size: 1.2rem;
    }
    
    .download-all-container {
      bottom: 10px;
    }
    
    .action-buttons {
      flex-direction: column;
    }
    
    .action-btn {
      width: 100%;
      justify-content: center;
    }
    
    .social-buttons {
      gap: 0.75rem;
    }
    
    .social-btn {
      width: 48px;
      height: 48px;
    }
    
    .services-grid-compact {
      grid-template-columns: 1fr;
    }
    
    .success-actions {
      padding: 1.5rem;
    }
    
    .share-title {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.75rem;
    }
    
    .recommendations-title {
      font-size: 1.5rem;
    }
    
    .social-btn {
      width: 44px;
      height: 44px;
    }
    
    .social-btn svg {
      width: 20px;
      height: 20px;
    }
  }