.demo-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    color: white;
  }
  .demo-container{
    display: flex;
    flex-direction: column;
    gap: 4rem;
    z-index: 5;
    position: relative;
}
  .orb-demo-1 {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(0, 74, 173, 0.2));
    top: -300px;
    right: -100px;
  }
  
  .orb-demo-2 {
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.2), rgba(0, 74, 173, 0.1));
    bottom: -300px;
    left: -200px;
  }
  
  .demo-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .text-white {
    color: white;
  }
  
  .text-light {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .gradient-text-light {
    background: linear-gradient(135deg, #2979FF, #2979FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .demo-features {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .pills-left,
  .pills-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .device-preview {
    width: 700px;
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.2),
      inset 0 1px 2px rgba(255, 255, 255, 0.1);
  }
  
  .device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
   
  }
  
  .interface-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .feature-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .feature-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(13, 110, 253, 0.2);
  }
  
  .pill-icon {
    width: 24px;
    height: 24px;
    color: #50A8FF;
  }
 
  
 
  
  .highlight-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #50A8FF;
    box-shadow: 0 0 20px rgba(80, 168, 255, 0.4);
    opacity: 0;
    transform: scale(0);
  }
  
  @media (max-width: 1400px) {
    .demo-features {
      gap: 2rem;
    }
    
    .device-preview {
      width: 500px;
    }
  }
  .connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
      rgba(80, 168, 255, 0.8),
      rgba(80, 168, 255, 0.2)
    );
    opacity: 0;
    pointer-events: none;
    top: 50%;
    right: -20px;
    transform-origin: right center;
  }
  
  .pill-right .connection-line {
    left: -20px;
    right: auto;
    transform-origin: left center;
  }
  @media (max-width: 1200px) {
    .demo-features {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .pills-left,
    .pills-right {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .device-preview {
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .demo-section {
      padding: 4rem 1rem;
    }
  
    .feature-pill {
      width: 100%;
    }
  }