.footer-social {
    background-color: #f5f5f5;
    text-align: center;
}

.title-section h4 {
    font-size: 26px;
    font-weight: bold;
}

.button-tooltip {
    background: #ff1a8c;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    animation: tooltipBounce 3s infinite;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.icon {
    width: 110px;
    height: 110px;
    font-size: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1), /* 1st shadow */
    4px 4px 10px rgba(0, 0, 0, 0.1), /* 2nd shadow */
    6px 6px 15px rgba(0, 0, 0, 0.15); /* 3rd shadow */
    transition: transform 0.3s ease;
    border-color: chartreuse;
    border-style: double
}

    .icon i {
        font-size: 30px;
        color: darkblue !important;
        transition: color 0.3s ease;
    }

    .icon:hover {
        transform: translateY(-5px);
    }

 


@keyframes tooltipBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}
