/* Concept Section Floating Animation */
.concept-image-inner {
    position: relative;
    /* Ensure containment */
}

/* Container for floating content */
.concept-floating-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through if needed */
    width: 100%;
    height: 100%;
}

.concept-floating-logo {
    grid-area: 1 / 1;
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    /* Increased shadow for better visibility without bg */
    animation: conceptFloatLogo 12s ease-in-out infinite;
    /* Slower, different timing */
    opacity: 0.8;
    /* Slight transparency to blend better behind text */
}

.concept-floating-text {
    grid-area: 1 / 1;
    z-index: 2;
    margin-top: 0;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
    animation: conceptFloatText 9s ease-in-out infinite;
    animation-delay: 0s;
}

/* Animations that move smoothly across the area */
@keyframes conceptFloatLogo {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, -20px) rotate(5deg);
    }

    66% {
        transform: translate(-30px, 40px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes conceptFloatText {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-40px, -40px) scale(0.95);
    }

    50% {
        transform: translate(0px, 30px) scale(1.05);
        /* Vertical emphasis */
    }

    75% {
        transform: translate(40px, -20px) scale(1);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .concept-floating-logo {
        width: 120px;
    }

    .concept-floating-text {
        font-size: 24px;
    }
}