/* 
    }   
    
    .social-icons {
        width: 18px;
        height: 18px;
        background: #ffffff15; /* transparent white */
        border: 1px solid #ffffff40;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 15px;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
        box-shadow: 0 0 12px #00eaff50;
        animation: glowPulse 2.8s infinite ease-in-out;
        text-shadow: 0 0 8px #0ff;
        text-decoration: none;
        cursor: pointer;
        position: relative;
    }

    .social-icons :hover {
      transform: translateY(-5px) scale(1.15);
      text-shadow: 0 0 20px #0ff;
      background: rgba(0, 234, 255, 0.2);
      color: #A46ffF;
      box-shadow: 0 0 30px #00eaff;
      border-color: #0ff;
      filter: brightness(1.3);
    }

    .social-icons :active {
      transform: translateY(-2px) scale(1.1);
    }

    /* subtle pulsing glow */
    @keyframes glowPulse {
      0%   { box-shadow: 0 0 8px #00eaff50; }
      50%  { box-shadow: 0 0 18px #00eaffaa; }
      100% { box-shadow: 0 0 8px #00eaff50; }
    }

    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }




