    .instructor-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0 15px rgba(0,0,0,0.08);
        margin-bottom: 30px;
        transition: transform 0.3s;
    }

    .instructor-card:hover {
        transform: translateY(-5px);
    }

    .instructor-img img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .instructor-info {
        padding: 20px;
        text-align: center;
    }

    .instructor-info h5 {
        margin-bottom: 5px;
        font-weight: 600;
    }

    .instructor-info p {
        color: #f39c12;
        margin: 0;
    }

    .instructor-social {
        padding: 15px;
        background: #f8f9fa;
        text-align: center;
    }

    .instructor-social a {
        margin: 0 6px;
        color: #fff;
        background-color: #f39c12;
        display: inline-block;
        width: 36px;
        height: 36px;
        line-height: 36px;
        border-radius: 50%;
        transition: 0.3s;
    }

    .instructor-social a:hover {
        background: #d68910;
    }

    @media(max-width: 767px) {
        .instructor-img img {
            height: 220px;
        }
    }