.fixed-left-center {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #f0f0f0;
    /* border-right: 2px solid #ccc; */
    z-index: 10;
    padding: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 0 6px 0px #14141440;
}
.social-links {
    display: flex;
    flex-direction: column; /* Stack links vertically */
    gap: 15px; /* Space between icons */
}

.social-links a {
    color: #555; /* Default icon color */
    font-size: 20px; /* Icon size */
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1877f2; /* Facebook blue (change per platform if desired) */
}

/* Specific hover colors (optional) */
.social-links a[aria-label="facebook"] { color: #1877f2; }
.social-links a[aria-label="instagram"] { color: #e4405f; }
.social-links a[aria-label="twitter"] { color: #000000; }
.social-links a[aria-label="youtube"] { color: #FF0000; }
.social-links a[aria-label="linkedIn"] { color: #0077b5; }
.social-links a[aria-label="telegram"] { color: #0088CC; }
.social-links a[aria-label="whatsapp"] { color: #25D366; }
@media (max-width: 768px) {
    .fixed-left-center {
        display: none; /* Hide left menu */
    }
}