  .about-ultra-dark {
          background: #030712;
          color: #fff;
          position: relative;
          overflow: hidden;
          font-family: 'Inter', sans-serif;
        }

        .about-ultra-hero {
          position: relative;
          min-height: 80vh;
          display: flex;
          align-items: center;
          justify-content: center;
          overflow: hidden;
          padding: 100px 20px;
        }

        .about-hero-bg {
          position: absolute;
          inset: 0;
          background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.1), transparent 70%);
          z-index: 0;
        }

        .about-hero-orb {
          position: absolute;
          border-radius: 50%;
          filter: blur(80px);
          z-index: 1;
        }

        .orb-1 {
          width: 400px;
          height: 400px;
          background: rgba(0, 168, 150, 0.4);
          top: -100px;
          left: -100px;
          animation: floatOrb 10s ease-in-out infinite alternate;
        }

        .orb-2 {
          width: 500px;
          height: 500px;
          background: rgba(13, 59, 79, 0.6);
          bottom: -200px;
          right: -100px;
          animation: floatOrb 12s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatOrb {
          0% {
            transform: translateY(0) scale(1);
          }

          100% {
            transform: translateY(50px) scale(1.1);
          }
        }

        .about-hero-content {
          position: relative;
          z-index: 2;
          text-align: center;
          max-width: 900px;
        }

        .about-badge-glow {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 8px 24px;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid var(--neo-cyan);
          border-radius: 50px;
          backdrop-filter: blur(10px);
          color: var(--neo-cyan);
          font-weight: 700;
          letter-spacing: 3px;
          text-transform: uppercase;
          font-size: 0.8rem;
          margin-bottom: 30px;
          box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
          animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, neoFlicker 4s infinite, neoColorShift 8s infinite linear;
        }


        .about-title-glare {
          font-family: 'Poppins', sans-serif;
          font-size: clamp(3.5rem, 8vw, 6rem);
          font-weight: 950;
          line-height: 1.05;
          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;
          transform: translateY(30px);
          animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards, navGradientPan 5s linear infinite;
          letter-spacing: -0.02em;
        }



        .about-subtitle-glass {
          font-size: clamp(1.1rem, 2vw, 1.4rem);
          color: rgba(255, 255, 255, 0.85);
          line-height: 1.6;
          max-width: 750px;
          margin: 0 auto;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }


        /* Glass Cards */
        .about-glass-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          padding: 80px 20px;
          max-width: 1280px;
          margin: -100px auto 0;
          position: relative;
          z-index: 3;
        }

        .about-glass-card {
          background: rgba(255, 255, 255, 0.02);
          border: 1px solid rgba(255, 255, 255, 0.05);
          border-radius: 24px;
          padding: 40px;
          backdrop-filter: blur(25px);
          -webkit-backdrop-filter: blur(25px);
          transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
          position: relative;
          overflow: hidden;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
        }

        /* Neon Border Beam Effect */
        .about-glass-card::after {
          content: '';
          position: absolute;
          inset: 0;
          padding: 1.5px;
          border-radius: 24px;
          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 4s linear infinite, neoHueRotate 10s linear infinite;
        }


        .about-glass-card:hover::after {
          opacity: 1;
        }

        .about-glass-card:hover {
          transform: translateY(-12px) scale(1.02);
          background: rgba(0, 243, 255, 0.05);
          border-color: rgba(0, 243, 255, 0.2);
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 243, 255, 0.1);
        }


        .agc-icon {
          width: 60px;
          height: 60px;
          border-radius: 16px;
          background: rgba(0, 243, 255, 0.1);
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 24px;
          color: var(--neo-cyan);
          font-size: 28px;
          border: 1px solid rgba(0, 243, 255, 0.3);
          transition: all 0.4s ease;
          box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
        }

        .about-glass-card:hover .agc-icon {
          transform: scale(1.1) rotate(5deg);
          background: var(--neo-cyan);
          color: #050b14;
          box-shadow: 0 0 25px var(--neo-cyan);
        }


        .agc-title {
          font-family: 'Poppins', sans-serif;
          font-size: 1.6rem;
          font-weight: 800;
          margin-bottom: 16px;
          color: #fff;
        }

        .agc-desc {
          color: rgba(255, 255, 255, 0.6);
          line-height: 1.7;
          font-size: 1.05rem;
        }

        /* Stats Section */
        .about-stats-wrap {
          padding: 80px 20px;
          max-width: 1280px;
          margin: 60px auto;
          position: relative;
          z-index: 2;
          border-top: 1px solid rgba(255, 255, 255, 0.05);
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
          display: flex;
          flex-wrap: wrap;
          justify-content: space-around;
          gap: 40px;
          background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0) 100%);
        }

        .astat-item {
          text-align: center;
        }

        .astat-num {
          font-size: 4rem;
          font-weight: 950;
          font-family: 'Poppins', sans-serif;
          color: #fff;
          /* Re-added white for clarity */
          background: none;
          -webkit-background-clip: unset;
          background-clip: unset;
          -webkit-text-fill-color: unset;
          margin-bottom: 8px;
          line-height: 1;
          letter-spacing: -2px;
          animation: neoColorShift 6s infinite alternate linear;
          text-shadow: 0 0 5px var(--neo-cyan);
          /* Minimal glow */
        }



        .astat-label {
          font-size: 1rem;
          font-weight: 700;
          color: rgba(0, 243, 255, 0.4);
          text-transform: uppercase;
          letter-spacing: 3px;
        }


        /* Our philosophy */
        .about-philosophy {
          padding: 80px 20px 140px;
          max-width: 1280px;
          margin: 0 auto;
          position: relative;
          z-index: 2;
          display: flex;
          align-items: center;
          gap: 60px;
        }

        .ap-text {
          flex: 1.2;
        }

        .ap-title {
          font-family: 'Poppins', sans-serif;
          font-size: clamp(2.5rem, 4vw, 3.5rem);
          font-weight: 800;
          margin-bottom: 30px;
          color: #fff;
          line-height: 1.2;
          text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .ap-title span {
          background: linear-gradient(135deg, var(--neo-cyan), var(--neo-purple));
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
        }

        .ap-desc {
          font-size: 1.15rem;
          color: rgba(255, 255, 255, 0.75);
          line-height: 1.8;
          margin-bottom: 30px;
        }


        .ap-visual {
          flex: 1;
          position: relative;
        }

        .ap-visual-main {
          width: 100%;
          height: 550px;
          border-radius: 30px;
          object-fit: cover;
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 243, 255, 0.15);
          border: 1px solid rgba(0, 243, 255, 0.2);
          filter: contrast(1.1) brightness(0.85) grayscale(0.2);
        }

        .ap-visual-float {
          position: absolute;
          bottom: -40px;
          left: -40px;
          background: rgba(5, 11, 20, 0.9);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border: 1px solid var(--neo-cyan);
          padding: 30px;
          border-radius: 24px;
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.2);
          max-width: 280px;
          animation: floatOrb 6s ease-in-out infinite alternate, neoFlicker 6s infinite 1s;
        }

        .ap-float-icon {
          font-size: 2.5rem;
          margin-bottom: 12px;
          filter: drop-shadow(0 0 10px gold);
        }

        .ap-float-title {
          font-family: 'Poppins', sans-serif;
          font-weight: 800;
          font-size: 1.3rem;
          color: var(--neo-cyan);
          margin-bottom: 6px;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .ap-float-desc {
          font-size: 0.95rem;
          line-height: 1.5;
          color: rgba(255, 255, 255, 0.8);
        }


        @media (max-width: 992px) {
          .about-philosophy {
            flex-direction: column;
            text-align: center;
          }

          .ap-visual {
            width: 100%;
            margin-top: 40px;
          }

          .ap-visual-float {
            left: 50%;
            transform: translateX(-50%);
            bottom: -30px;
            animation: none;
            text-align: left;
            width: 90%;
            max-width: none;
          }

          .about-glass-grid {
            margin-top: -40px;
          }
        }