      /* Page Loader */
      #page-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 25%, #fef3f8 50%, #f7ffe6 75%, #ffffff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        transition: opacity 0.5s ease, visibility 0.5s ease;
      }
      
      #page-loader.hidden {
        opacity: 0;
        visibility: hidden;
      }
      
      .hash-loader {
        font-size: 120px;
        font-weight: 900;
        font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
        background: linear-gradient(135deg, #68cecf 0%, #a0cd45 25%, #f876c0 50%, #f8c63f 75%, #68cecf 100%);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 3s ease infinite, hashPulse 2s ease-in-out infinite;
      }
      
      @keyframes hashPulse {
        0%, 100% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.1); opacity: 1; }
      }

      /* Cursor Glow Effect */
      #cursor-glow {
        position: fixed;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(104, 206, 207, 0.3) 0%, rgba(248, 118, 192, 0.25) 25%, rgba(160, 205, 69, 0.25) 50%, rgba(248, 198, 63, 0.2) 75%, transparent 100%);
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
        opacity: 0;
        filter: blur(60px);
      }

      #cursor-glow.active {
        opacity: 1;
      }

      /* Animations from home page */
      @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
      }
      
      @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
      }
      
      @keyframes pulse {
        0%, 100% { opacity: 0.6; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.05); }
      }
      
      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      .hero-gradient-bg {
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 25%, #fef3f8 50%, #f7ffe6 75%, #ffffff 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
      }
      
      .floating-element {
        animation: float 6s ease-in-out infinite;
      }
      
      .process-step {
        transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
      }
      
      .process-step:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      }
      
      .stat-card {
        transition: transform 0.4s ease-out;
      }
      
      .stat-card:hover {
        transform: translateY(-8px);
      }
      
      .service-category {
        transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
        border: 2px solid transparent;
      }
      
      .service-category:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      }

      /* Mobile Menu Styles */
      #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
      }

      #mobile-menu.active {
        max-height: 400px;
      }

      .hamburger-line {
        width: 25px;
        height: 3px;
        background: #333333;
        transition: all 0.3s ease;
        border-radius: 3px;
      }

      #hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      #hamburger-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
      }

      #hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
