/* Hero Visual Creative Styles */
.hero-creative-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.hero-main-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 10px;
    transition: transform 0.3s ease;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Pulsing effect behind the image */
.hero-pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0) 70%);
    z-index: 0;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }
}

/* Floating Cards */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: float-y 4s ease-in-out infinite;
    max-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--bs-primary);
}

.badge-text-group {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-value {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 700;
}

/* Positions for cards */
.badge-top-left {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.badge-bottom-right {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

.badge-top-right {
    top: 5%;
    right: 0px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border: none;
    animation-delay: 0.7s;
}

.badge-top-right i {
    color: rgba(255, 255, 255, 0.9);
}

.badge-top-right .badge-label {
    color: rgba(255, 255, 255, 0.8);
}

.badge-top-right .badge-value {
    color: white;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .bg-shape-creative {
        opacity: 0.5;
    }

    .hero-creative-container {
        margin-top: 3rem;
        max-width: 500px;
    }

    .badge-top-left {
        left: 0;
    }

    .badge-bottom-right {
        right: 0;
    }
}