/* Start custom CSS for text-editor, class: .elementor-element-f1a859a *//* ==========================
   Interactive Banner Cleanup
   ========================== */

/* Make banner behave like a circular card */
.ult-banner-block {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.35s ease;
}

/* Smooth image animation */
.ult-banner-block img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
    transform-origin: center center;
}

/* Completely disable the plugin overlay */
.ult-banner-block .mask {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: none !important;
}

/* Hover effect */
.ult-banner-block:hover img {
    transform: scale(1.08);
}

.ult-banner-block:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Keep the invisible clickable link covering the whole circle */
.ult-banner-block .bb-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}/* End custom CSS */