.top-icons {
    background: #222;
    padding: 8px 20px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-icons .item {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.top-icons .item i {
    margin-right: 6px;
    color: #ff9800; /* Icon color */
}
.footer-social {
    padding: 50px;
    background: #111;
    text-align: center;
}

.footer-social a {
    margin: 0 10px;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    background: #222;
    color: #fff;
    border-radius: 50%; /* round icons */
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ff5722; /* hover color */
    transform: translateY(-3px);
}