/* #page2{
    background-image: url(https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2084&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) ;
    background-position: center;
    background-size: cover;
} */



.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #111;
    padding: 20px 0;
  }
  
  .marquee-track {
    display: inline-block;
    white-space: nowrap;
  }
  
  .marquee-item {
    display: inline-block;
    padding: 0 50px;
    font-size: 1.5rem;
    color: #fff;
  }
  


  .card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 100px 0;
    perspective: 1000px;
    /* background-color: #6E40F7; */
  }
  
  .card {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
  }
  
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
  }
  
  .card-front {
    background: linear-gradient(45deg, #6E40F7, #00F0B5);
  }
  
  .card-back {
    background: linear-gradient(45deg, #FF4D4D, #F9CB28);
    transform: rotateY(180deg);
  }




  .morph-container {
    padding: 100px 2rem;
    /* background-color: #111; */
    display: flex;
    justify-content: center;
  }

  .morph-card {
    width: 90%;
    max-width: 500px;
    height: 300px;
    background: #6E40F7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    will-change: border-radius, background;
  }

  @media (max-width: 600px) {
    .morph-card {
      height: 200px;
    }
  }



  .input-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .input-group {
    position: relative;
    margin-bottom: 2rem;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .input-field {
    width: 100%;
    padding: 1.2rem 1rem 0.5rem;
    border: none;
    border-bottom: 2px solid #6E40F7;
    background: rgba(110, 64, 247, 0.05);
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    transition: all 0.3s;
    transform-style: preserve-3d;
  }
  
  .input-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6E40F7;
    transition: all 0.3s;
    pointer-events: none;
  }
  
  .input-field:focus {
    outline: none;
    background: rgba(110, 64, 247, 0.1);
    box-shadow: 0 5px 15px rgba(110, 64, 247, 0.2);
  }
  
  .input-field:focus + .input-label,
  .input-field:not(:placeholder-shown) + .input-label {
    top: 0.8rem;
    transform: translateY(0) scale(0.8);
    color: #00F0B5;
  }
  
  @media (max-width: 600px) {
    .input-section {
      padding: 2rem 1rem;
    }
  }


  .video-mask-section {
    height:   150vh;
    position: relative;
    background: #000;
  }
  
  .video-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .masked-video {
    width: 80%;
    height: 80%;
    object-fit: cover;
    clip-path: circle(10% at 50% 50%);
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 10;
    mix-blend-mode: difference;
  }
  
  @media (max-width: 768px) {
    .masked-video {
      width: 100%;
      height: 60%;
    }
  }


  .input-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .input-group {
    position: relative;
    margin-bottom: 2rem;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .input-field {
    width: 100%;
    padding: 1.2rem 1rem 0.5rem;
    border: none;
    border-bottom: 2px solid #6E40F7;
    background: rgba(110, 64, 247, 0.05);
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    transition: all 0.3s;
    transform-style: preserve-3d;
  }
  
  .input-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6E40F7;
    transition: all 0.3s;
    pointer-events: none;
  }
  
  .input-field:focus {
    outline: none;
    background: rgba(110, 64, 247, 0.1);
    box-shadow: 0 5px 15px rgba(110, 64, 247, 0.2);
  }
  
  .input-field:focus + .input-label,
  .input-field:not(:placeholder-shown) + .input-label {
    top: 0.8rem;
    transform: translateY(0) scale(0.8);
    color: #00F0B5;
  }
  
  @media (max-width: 600px) {
    .input-section {
      padding: 2rem 1rem;
    }
  }