.floating-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    perspective: 1000px;
}

.floating-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-card:hover {
    transform: rotateX(10deg) rotateY(10deg) translateZ(20px);
    box-shadow: 20px 20px 40px rgba(0,0,0,0.1);
}

.floating-icon {
    font-size: 3rem;
    color: #000000 !important;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    transform: translateZ(30px);
}

.floating-card:hover .floating-icon {
    transform: translateZ(50px) scale(1.1);
}