.social-list {
    list-style: none;
    padding: 0;
}

.social-list li {
    margin-bottom: 10px;
}

.social-list a {
    display: block;
    padding: 10px 15px;
    background: #0a0c14;
    color: #ffffff;
    border:none;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.social-list i {
    margin-right: 8px;
    font-size: 16px;
}

/* 🔥 Brand Colors */
.facebook i { color: #1877f2; }
.tiktok i { color: #ffffff; }
.youtube i { color: #ff0000; }
.instagram i { color: #e1306c; }

/* Hover effect */
.social-list a:hover {
    background: #000;
    color: #fff;
}

.social-list a:hover i {
    color: #fff; /* hover এ icon white হবে */
}

.facebook a:hover { background: #1877f2; }
.youtube a:hover { background: #ff0000; }
.instagram a:hover { background: #e1306c; }
.tiktok a:hover { background: #00F2EA; }