/* Sticky Badge */
.sticky-badge {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #0F4B5E; /* Teal Blue */
    color: #ffffff; /* White text */
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 60px;
    font-size: 14px;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sticky-badge:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.badge-content {
    display: flex;
    align-items: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    margin-left: 10px;
    white-space: pre-line;
}

.badge-logo {
    display: flex;
    align-items: center;
    background: #d16cf8; /* Futuristic Purple */
    border-radius: 50%;
    padding: 5px;
}
