/* Enhanced styles for .why-choose-one__shape-3 UI */

.why-choose-one__img {
    position: relative;
    display: inline-block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(80, 150, 255, 0.15), 0 2px 16px rgba(0,0,0,0.10);
    border: 3px solid rgba(80, 150, 255, 0.12);
    background: linear-gradient(135deg, rgba(80,150,255,0.10), rgba(255,255,255,0.05));
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.why-choose-one__img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
}
.why-choose-one__img:hover {
    box-shadow: 0 16px 48px 0 rgba(80, 150, 255, 0.25), 0 4px 32px rgba(0,0,0,0.17);
    border-color: rgba(80, 150, 255, 0.28);
    transform: scale(1.03) rotate(-1deg);
}
.why-choose-one__img:hover img {
    transform: scale(1.06) rotate(-2deg);
    filter: brightness(1.07) saturate(1.08);
}
@media (max-width: 768px) {
    .why-choose-one__img {
        border-radius: 16px;
    }
    .why-choose-one__img img {
        border-radius: 14px;
    }
}

.why-choose-one__shape-3 {
    position: absolute;
    left: 0;
    top: 20%;
    z-index: 2;
    filter: drop-shadow(0 8px 32px rgba(80, 150, 255, 0.25));
    animation: floatShape 4s ease-in-out infinite;
    transition: transform 0.3s, filter 0.3s;
}
.why-choose-one__shape-3 img {
    border-radius: 50%;
    box-shadow: 0 0 40px 8px rgba(80, 150, 255, 0.15), 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s;
}
.why-choose-one__shape-3:hover img {
    box-shadow: 0 0 80px 16px rgba(80, 150, 255, 0.25), 0 4px 32px rgba(0,0,0,0.12);
    transform: scale(1.08) rotate(-3deg);
}
.why-choose-one__shape-3::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle at 60% 40%, rgba(80,150,255,0.2) 0%, transparent 70%);
    z-index: 1;
}
@keyframes floatShape {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px) scale(1.04); }
}
@media (max-width: 768px) {
    .why-choose-one__shape-3 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
    }
    .why-choose-one__shape-3 img {
        width: 100%;
        height: auto;
    }
}
