﻿.team-card:hover .team-overlay {
    opacity: 1;
    visibility: visible;
}

.propkeys-team {
    padding: 70px 0;
}

    .propkeys-team .team-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }

        .propkeys-team .team-heading .line {
            width: 40px;
            height: 3px;
            background: #2bb0ff;
        }

        .propkeys-team .team-heading h2 {
            font-size: 36px;
            font-weight: 700;
            margin: 0;
        }

    .propkeys-team .team-desc {
        max-width: 900px;
        margin: 0 auto 55px;
        text-align: center;
        font-size: 17px;
        color: #2c3e50;
        line-height: 1.6;
    }

    .propkeys-team .team-card {
        position: relative;
        overflow: hidden;
    }

        .propkeys-team .team-card img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }

    .propkeys-team .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .propkeys-team .team-card:hover .overlay {
        opacity: 1;
    }

    .propkeys-team .info {
        position: absolute;
        bottom: 18px;
        left: 18px;
        color: #fff;
    }

        .propkeys-team .info h5 {
            margin: 0;
            font-size: 20px;
            font-weight: 600;
        }

        .propkeys-team .info p {
            margin: 4px 0 0;
            font-size: 14px;
        }

    .propkeys-team .linkedin {
        position: absolute;
        bottom: 18px;
        right: 18px;
        width: 38px;
        height: 38px;
        background: #fff;
        color: #0077b5;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        text-decoration: none;
        font-size: 18px;
    }
