        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */
        
        /* body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        } */
        
        .team-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 30px;
            width: 100%;
            margin: 0 auto;
        }
        
        .card-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 320px;
            perspective: 1000px;
        }
        
        .card {
            width: 100%;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: none;
            box-shadow: 2px 20px 50px rgba(0, 0, 0, 0.1);
            transition: transform 0.6s, box-shadow 0.3s;
            position: relative;
        }
        
        /* .card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        } */
        
        .card-image {
            position: relative;
            height: 260px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
            padding: 5px;
            border-radius: 15px;
        }
        
        /* .card:hover .card-image img {
            transform: scale(1.05);
        } */
        
        /* .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(12, 45, 71, 0.8));
            height: 50%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        } */
        
        /* .card:hover .card-overlay {
            opacity: 1;
        } */
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: #fff;
            background: rgba(255, 255, 255, 0.2);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: background 0.3s, transform 0.3s;
        }
        
        .social-icons a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }
        
        .card-content {
            padding: 24px;
            text-align: center;
        }
        
        .card-content h3 {
            font-weight: 700;
            color: #0C2D47;
            margin-bottom: 8px;
            font-size: 1.4rem;
        }
        
        .card-content .position {
            color: #2b7dbc;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        
        .card-content .education {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 6px;
        }
        
        .card-content .experience {
            color: #777;
            font-size: 0.95rem;
            margin-bottom: 16px;
        }
        
        .card-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 15px;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .btn-primary {
            background: #0C2D47;
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background: #1a4d78;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            border: 1px solid #0C2D47;
            color: #0C2D47;
            background: transparent;
        }
        
        .btn-outline:hover {
            background: rgba(12, 45, 71, 0.1);
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .card-container {
                width: 100%;
                max-width: 350px;
            }
        }