I want to draw the attached figure that I did in power point in Latex, I can't figure out an easy way to draw the tangent and I want to draw the balloon shape as 3d plot
\documentclass[tikz,border=5pt]{standalone}
\begin{document}
\begin{tikzpicture}[scale=0.5]
\draw[rotate=180] (-2,0.25)--++(8,0);
\draw[rotate=180, fill=gray!30] (2,0.25) .. controls (9,6) and (-5,6) .. (2,0.25);
\begin{scope}[xshift=6cm, yshift=-10cm]
\def\rx{4} % horizontal radius of the ellipse
\def\ry{0.5} % vertical radius of the ellipse
\def\z{2} % distance from center of ellipse to origin
\pgfmathparse{asin(\ry/\z)}
\let\angle\pgfmathresult
\coordinate (h) at (0, \z);
\coordinate (O) at (0, 0);
\coordinate (A) at ({-\rxcos(\angle)}, {\z-\rysin(\angle)});
\coordinate (B) at ({\rxcos(\angle)}, {\z-\rysin(\angle)});
\coordinate (C) at (3, 2);
\draw[fill=gray!50] (A) -- (O) -- (B) -- cycle;
\draw[fill=gray!30] (h) ellipse ({\rx} and {\ry});
\end{scope}
\end{tikzpicture}
\end{document}
