        .social-media {
            position: fixed;
            left: 0;
            bottom: 0;
            display: flex;
            padding: 2rem;
            gap: 1.5rem;
            z-index: 10;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            color: black;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .social-icon:nth-child(1):hover { background: #3b5998; }
        .social-icon:nth-child(2):hover { background: #000000; }
        .social-icon:nth-child(3):hover { background: #e1306c; }
        .social-icon:nth-child(4):hover { background: green; }

         @media (max-width: 768px) {
             .social-media {
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                flex-direction: row;
                justify-content: center;
                padding: 1rem;
                transform: none;
            }
            
            .social-icon {
                width: 50px;
                height: 50px;
            }
            
            .social-icon:hover {
                width: 50px;
                transform: translateY(-5px);
            }
            
            .social-icon:hover i {
                transform: none;
            }
            
            .social-icon span {
                display: none;
            }
            
         }