.team-member-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: #fff;
            height: 100%;

        }

        .team-image-container {
            position: relative;
            height: 350px;
            overflow: hidden;
        }

        .team-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .team-member-card:hover .team-image-container img {
            transform: scale(1.05);
        }

        .team-social-links {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: rgba(162, 61, 141, 0.9);
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-member-card:hover .team-social-links {
            bottom: 0;
        }

        .social-icon {
            color: white;
            margin: 0 10px;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: #f8f9fa;
            transform: translateY(-3px);
        }

        .team-details {
            padding: 20px;
            text-align: center;
        }

        .team-name {
            color: #2c3e50;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .team-name a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .team-name a:hover {
            color: #a23d8d;
        }

        .team-position {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.4;
        }

        .team-credentials {
            /* background: #f8f9fa; */
            padding: 12px;
            border-radius: 5px;
            margin-top: 10px;
        }

        .credential-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .credential-item:last-child {
            margin-bottom: 0;
        }

        .credential-label {
            font-weight: 600;
            color: #495057;
        }

        .credential-value {
            color: #212529;
        }

        .row {
            margin-left: -15px;
            margin-right: -15px;
        }

        .col-lg-4,
        .col-md-6,
        .col-sm-6 {
            padding-left: 15px;
            padding-right: 15px;
            margin-bottom: 30px;
        }