
            .team-section .tilt-card {
                transform-style: preserve-3d;
                transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
                position: relative;
                overflow: hidden;
            }

            .team-section .tilt-card:hover {
                transform: perspective(1000px) rotateX(3deg) rotateY(3deg) translateZ(25px);
            }

            /* Name and role overlay */
            .team-section .tilt-card .info-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 2rem 1.5rem 1.5rem;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
                transform: translateY(0);
                transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 15;
                pointer-events: none;
            }

            .team-section .tilt-card:hover .info-overlay {
                transform: translateY(100%);
            }

            .team-section .tilt-card .member-name {
                font-family: var(--font-heading);
                font-size: 1.8rem;
                font-weight: 800;
                color: white;
                margin-bottom: 0.25rem;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            }

            .team-section .tilt-card .member-role {
                font-family: var(--font-body);
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.9);
                letter-spacing: 0.05em;
                text-transform: uppercase;
                display: inline-block;
                padding: 0.25rem 1rem;
                border-radius: 999px;
                backdrop-filter: blur(5px);
            }

            /* Hover overlay */
            .team-section .tilt-card .image-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
                opacity: 0;
                transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                z-index: 25;
                pointer-events: none;
                backdrop-filter: blur(5px);
            }

            .team-section .tilt-card:hover .image-overlay {
                opacity: 1;
                pointer-events: auto;
            }

            .team-section .tilt-card .overlay-content {
                transform: scale(0.9) translateY(20px);
                opacity: 0;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                transition-delay: 0.1s;
                text-align: center;
                width: 100%;
            }

            .team-section .tilt-card:hover .overlay-content {
                transform: scale(1) translateY(0);
                opacity: 1;
            }

            .team-section .tilt-card .social-links {
                display: flex;
                gap: 1rem;
                justify-content: center;
                margin-top: 2rem;
                transform: translateY(20px);
                opacity: 0;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                transition-delay: 0.2s;
            }

            .team-section .tilt-card:hover .social-links {
                transform: translateY(0);
                opacity: 1;
            }

            .team-section .tilt-card .description {
                color: white;
                margin: 1.5rem 0 0.5rem;
                font-size: 1rem;
                line-height: 1.6;
                opacity: 0.9;
                font-family: var(--font-body);
            }

            .team-section .tilt-card .role-badge {
                position: absolute;
                top: 1rem;
                right: 1rem;
                color: white;
                padding: 0.5rem 1.2rem;
                border-radius: 999px;
                font-size: 0.8rem;
                font-weight: 600;
                letter-spacing: 0.1em;
                z-index: 20;
                opacity: 0.9;
                transition: all 0.4s ease;
                text-transform: uppercase;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
                backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                font-family: var(--font-body);
            }

            .team-section .tilt-card:hover .role-badge {
                transform: translateY(-100px) scale(0.8);
                opacity: 0;
            }

            .team-section .tilt-card .social-link {
                width: 45px;
                height: 45px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.3);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.3rem;
                transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                text-decoration: none;
                pointer-events: auto;
            }

            .team-section .tilt-card .social-link:hover {
                transform: translateY(-5px) scale(1.15);
                border-color: transparent;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            }

            .team-section .tilt-card img {
                position: absolute;
                inset: 0;
                z-index: 5;
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .team-section .tilt-card:hover img {
                transform: scale(1.1);
            }

            @keyframes fade-in {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes pulse-slow {

                0%,
                100% {
                    opacity: 0.5;
                }

                50% {
                    opacity: 1;
                }
            }

            .animate-pulse-slow {
                animation: pulse-slow 2s ease-in-out infinite;
            }

            .animate-card {
                animation: fade-in 0.8s ease forwards;
                opacity: 0;
            }

            .animate-card:nth-child(1) {
                animation-delay: 0.1s;
            }

            .animate-card:nth-child(2) {
                animation-delay: 0.2s;
            }

            .animate-card:nth-child(3) {
                animation-delay: 0.3s;
            }

            .animate-card:nth-child(4) {
                animation-delay: 0.4s;
            }

            .animate-card:nth-child(5) {
                animation-delay: 0.5s;
            }

            .animate-card:nth-child(6) {
                animation-delay: 0.6s;
            }

