.testimonial-container {
    position: relative;
  padding-top: -500px;
    padding-bottom: 200px;
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        ellipse at 50% 65%,
        rgba(75, 35, 150, 0.5) 0%,   /* increased from 0.25 → 0.6 */
        rgba(30, 15, 60, 0.3) 40%,   /* increased from 0.15 → 0.4 */
        #000000 70%
    );
  }
  
  /* User Images - Exact positioning from the image */
  .user-photo {
    display: none;
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Left side photos - arranged in a curved pattern */
  .photo-1 {
    width: 127px;
    height: 143px;
    top: 41%;
    left: 6%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-2 {
    width: 127px;
    height: 143px;
    top: 20%;
    left: 6%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-3 {
    width: 127px;
    height: 143px;
    top: 38%;
    left: 16%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-4 {
    width: 127px;
    height: 143px;
    bottom: 65%;
    left: 16%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-5 {
    width: 127px;
    height: 143px;
    bottom: 2%;
    left: 10%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  /* Top area photos */
  .photo-6 {
    width: 127px;
    height: 143px;
    top: 25%;
    left: 26%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-7 {
    width: 127px;
    height: 143px;
    top: 22%;
    left: 36%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-8 {
    width: 127px;
    height: 143px;
    top: 25%;
    right: 46%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-9 {
    width: 127px;
    height: 143px;
    top: 22%;
    right: 36%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  /* Right side photos - arranged in a curved pattern */
  .photo-10 {
    width: 127px;
    height: 143px;
    top: 25%;
    right: 26%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-11 {
    width: 127px;
    height: 143px;
    top: 18%;
    right: 16%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-12 {
    width: 127px;
    height: 143px;
    top: 40%;
    right: 16%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  .photo-13 {
    width: 127px;
    height: 143px;
    bottom: 60%;
    right: 6%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  /* Bottom area photos */
  .photo-14 {
    width: 127px;
    height: 143px;
    bottom: 37%;
    left: 86%;
    position: absolute; /* make sure it floats relative to its container */
    animation: float 4s ease-in-out infinite;
  }
  
  /* Floating animation */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px); /* moves up */
    }
    100% {
      transform: translateY(0px); /* back to original */
    }
  }
  
  /* Hide photos on small screens (mobile) */
  @media screen and (max-width: 1368px) {
    .testimonial-container {
        margin-top: 100px;
      margin-bottom: 100px;
      height: 100px;
      width: 100%;
    }
    .user-photo {
      display: none !important;
    }
  
    @media screen and (max-width: 576px) {
      .user-photo {
        display: none !important;
      }
    }
  }
  
  /* Central content */
  .content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 600px;
    margin-top: 60px;
    top: 120px;
  }
  
  .main-heading {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
  }
  
  .brand-name {
    background: linear-gradient(135deg, #8400d8 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .testimonial-quote {
    font-size: 1.2rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .success-button {
    background: linear-gradient(135deg, #8400d8 0%, #a855f7 100%);
    color: white;
    padding: 18px 38px;
    font-size: 1.05rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .success-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .user-photo {
      transform: scale(0.8);
    }
    .main-heading {
      font-size: 3.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .user-photo {
      transform: scale(0.6);
    }
    .main-heading {
      font-size: 2.8rem;
    }
    .testimonial-quote {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .user-photo {
      transform: scale(0.4);
    }
    .main-heading {
      font-size: 2.2rem;
    }
    .testimonial-quote {
      font-size: 1rem;
      padding: 0 20px;
    }
  }
  