 .team-page-wrap {
          background: #030712;
          /* ultra dark */
          font-family: 'Inter', sans-serif;
          color: #fff;
          overflow: hidden;
          position: relative;
        }

        .team-hero {
          position: relative;
          padding: 140px 20px 100px;
          text-align: center;
          overflow: hidden;
        }

        .team-hero-bg {
          position: absolute;
          inset: 0;
          background: radial-gradient(circle at 50% 0%, rgba(188, 19, 254, 0.1), transparent 70%);
          z-index: 0;
        }

        .team-hero-grid {
          position: absolute;
          inset: 0;
          background-size: 50px 50px;
          background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
          -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
          mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
          z-index: 1;
        }

        .team-hero-content {
          position: relative;
          z-index: 2;
          max-width: 900px;
          margin: 0 auto;
        }

        .team-badge {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 8px 24px;
          border-radius: 50px;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid var(--neo-cyan);
          color: var(--neo-cyan);
          font-weight: 700;
          font-size: 0.85rem;
          text-transform: uppercase;
          letter-spacing: 2px;
          margin-bottom: 24px;
          box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
          animation: fadeInUp 1s forwards, neoColorShift 8s infinite linear;
        }

        .team-title {
          font-family: 'Poppins', sans-serif;
          font-size: clamp(3.5rem, 8vw, 5.5rem);
          font-weight: 950;
          line-height: 1.1;
          margin-bottom: 24px;
          background: linear-gradient(to right, var(--neo-cyan), var(--neo-purple), var(--neo-pink), var(--neo-cyan));
          background-size: 200% auto;
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3));
          opacity: 0;
          animation: fadeInUp 1s 0.2s forwards, navGradientPan 5s linear infinite;
        }

        .team-subtitle {
          font-size: clamp(1.1rem, 2vw, 1.3rem);
          color: rgba(255, 255, 255, 0.8);
          line-height: 1.6;
          max-width: 650px;
          margin: 0 auto;
          opacity: 0;
          animation: fadeInUp 1s 0.4s forwards;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }


        .team-cards-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 40px;
          max-width: 1200px;
          margin: 0 auto;
          padding: 40px 20px 100px;
          position: relative;
          z-index: 3;
        }

        .team-card-pro {
          position: relative;
          border-radius: 30px;
          background: rgba(255, 255, 255, 0.02);
          border: 1px solid rgba(255, 255, 255, 0.05);
          padding: 40px 30px;
          text-align: center;
          backdrop-filter: blur(25px);
          -webkit-backdrop-filter: blur(25px);
          transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
          cursor: pointer;
          overflow: hidden;
          opacity: 0;
          transform: translateY(40px);
          animation: fadeInUp 1s 0.6s forwards;
        }

        /* Neon Border Beam for Team Card */
        .team-card-pro::after {
          content: '';
          position: absolute;
          inset: 0;
          padding: 1.5px;
          border-radius: 30px;
          background: linear-gradient(90deg,
              transparent 0%,
              transparent 20%,
              var(--neo-cyan) 40%,
              var(--neo-purple) 60%,
              transparent 80%,
              transparent 100%);
          background-size: 200% 100%;
          -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask-composite: exclude;
          pointer-events: none;
          opacity: 0;
          transition: opacity 0.5s;
          animation: neoBorderBeam 5s linear infinite, neoHueRotate 12s linear infinite;
        }

        .team-card-pro:hover::after {
          opacity: 1;
        }

        .team-card-pro:hover {
          transform: translateY(-15px) scale(1.02);
          box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 243, 255, 0.1);
          background: rgba(0, 243, 255, 0.03);
          border-color: rgba(0, 243, 255, 0.2);
        }


        .tc-avatar-wrapper {
          position: relative;
          width: 160px;
          height: 160px;
          margin: 0 auto 24px;
          flex-shrink: 0;
        }

        .tc-avatar {
          width: 100%;
          height: 100%;
          border-radius: 50%;
          object-fit: cover;
          border: 4px solid #030712;
          position: relative;
          z-index: 2;
          transition: transform 0.5s ease;
        }

        .tc-avatar-wrapper::after {
          content: '';
          position: absolute;
          inset: -6px;
          border-radius: 50%;
          background: linear-gradient(135deg, var(--neo-cyan), var(--neo-purple), var(--neo-pink));
          z-index: 1;
          animation: spin 10s linear infinite, neoHueRotate 15s linear infinite;
          /* Slow Premium Speed */
          opacity: 0.4;
          transition: opacity 0.5s ease;
        }


        .team-card-pro:hover .tc-avatar-wrapper::after {
          opacity: 1;
          animation-duration: 2s;
        }

        .team-card-pro:hover .tc-avatar {
          transform: scale(1.05);
        }

        @keyframes spin {
          0% {
            transform: rotate(0deg);
          }

          100% {
            transform: rotate(360deg);
          }
        }

        .tc-name {
          font-family: 'Poppins', sans-serif;
          font-size: 1.8rem;
          font-weight: 800;
          color: #fff;
          margin-bottom: 8px;
          transition: all 0.3s;
          text-shadow: 0 0 5px rgba(0, 243, 255, 0.2);
        }

        .team-card-pro:hover .tc-name {
          color: var(--neo-cyan);
          text-shadow: 0 0 10px var(--neo-cyan);
        }

        .tc-role {
          font-size: 1.05rem;
          font-weight: 700;
          color: var(--neo-cyan);
          text-transform: uppercase;
          letter-spacing: 2px;
          margin-bottom: 16px;
          opacity: 0.9;
        }

        .tc-desc {
          color: rgba(255, 255, 255, 0.75);
          line-height: 1.6;
          font-size: 0.95rem;
          margin-bottom: 24px;
        }

        .tc-action {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          font-weight: 800;
          color: #fff;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.1);
          padding: 12px 28px;
          border-radius: 50px;
          transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
          opacity: 0;
          transform: translateY(10px);
        }

        .team-card-pro:hover .tc-action {
          opacity: 1;
          transform: translateY(0);
          background: var(--neo-cyan);
          color: #030712;
          border-color: var(--neo-cyan);
          box-shadow: 0 0 20px var(--neo-cyan);
        }


        .tc-action svg {
          width: 18px;
          height: 18px;
          transition: transform 0.3s;
        }

        .tc-action:hover svg {
          transform: translateX(4px);
        }

        .team-cta-wrap {
          margin: 60px auto 0;
          text-align: center;
          position: relative;
          z-index: 3;
          background: rgba(5, 11, 20, 0.8);
          border: 1px solid var(--neo-cyan);
          border-radius: 30px;
          padding: 60px 20px;
          max-width: 1000px;
          backdrop-filter: blur(10px);
          box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
        }

        .team-cta-title {
          font-family: 'Poppins', sans-serif;
          font-size: 2.2rem;
          font-weight: 800;
          margin-bottom: 20px;
          color: #fff;
          text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }

        .team-cta-btn {
          display: inline-block;
          background: var(--neo-cyan);
          color: #0d3b4f;
          font-weight: 800;
          font-size: 1.1rem;
          padding: 18px 45px;
          border-radius: 50px;
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          box-shadow: 0 10px 20px rgba(0, 243, 255, 0.3);
          cursor: pointer;
          border: none;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .team-cta-btn:hover {
          transform: translateY(-5px) scale(1.05);
          box-shadow: 0 15px 40px rgba(0, 243, 255, 0.6);
          background: #fff;
          color: var(--neo-cyan);
        }