.social-share {
    display: flex;          /* Flexbox for horizontal layout */
    flex-wrap: nowrap;     /* Prevent wrapping to new line */
    gap: 12px;            /* Space between icons */
    align-items: center;  /* Vertically center icons */
}

.social-icon {
    display: inline-block; /* Ensures proper alignment */
}

.social-icon a {
    display: inline-flex;  /* Better icon alignment */
    align-items: center;
    justify-content: center;
    color: #555;          /* Default color */
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    font-size: clamp(20px, 2.5vw, 28px);
}

.social-icon a:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Platform-specific hover colors */
.social-icon a[href*="facebook.com"] { color: #3b5998; }
.social-icon a[href*="twitter.com"] { color: #1DA1F2; }
.social-icon a[href*="linkedin.com"] { color: #0077B5; }
.social-icon a[href*="mailto:"] { color: #0088CC; }
.social-icon a[href*="reddit.com"] { color: #FF5700; }
.social-icon a[href*="telegram.me"] { color: #0088CC; }
.social-icon a[href*="whatsapp.com"] { color: #25D366; }

