body {
    font-family: 'Montserrat', sans-serif;
}

.social-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Shiny Golden Effect for Verified Business Badge */
.verified-business-badge {
    background: linear-gradient(45deg, #f7d04a, #ffbc3e, #f7d04a);
    background-size: 200% 200%;
    color: #000;
    /* Black text color */
    font-weight: bold;
    /* Bold text */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: shine 1.5s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add shine animation */
@keyframes shine {
    0% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0 0;
    }
}

/* Specific style for the tick */
.verified-business-badge i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Additional styles to make the badge smaller and positioned at the top-right corner */
.verified-business-badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 12px;
}