.nurse-container {
    width: 100%;
}
.nursing-card-container {
    margin-left: 70px;
    margin-right: 70px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.nursing-card { 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: none;
    margin-left: 20px;
    margin-right: 20px; 
    margin-bottom: 20px;   
}
.nursing-img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    height: 200px;
}
.nursing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.nursing-content {
    text-align: center;
}
.nursing-content p:nth-child(1) {
    margin-top: 12px;
}
.nursing-content p:nth-child(2) {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}
.nursing-content span {
    font-size: 14px;
    color: gray;
}
.nursing-content span:nth-child(3) {
    font-size: 14px !important;
    text-decoration: line-through;
} 

@media (min-width: 1600px) {
    .col-lg-20 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }
}
@media (max-width:1100px) {
    .nursing-card-container {
        margin-left: 40px;
        margin-right: 40px;
    }
}
@media (max-width:991px) {
    .nursing-card {
        margin-bottom: 20px;
    }   
}
@media (max-width:768px) {
    .nursing-content p:nth-child(1) {
        font-size: 15px;
    }    
}
@media (max-width:540px) {
    .nursing-card-container {
        margin-left: 5px;
        margin-right: 5px;
    }
    .nursing-card {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .nursing-img {
        height: 130px;
    }
    .medical-img {
        height: 160px !important; 
    }
}
@media (max-width:477px) and (min-width:411px) {
    .btnContainer a:nth-of-type(1) {
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media (max-width:400px) {
    .nursingBtnContainers a{
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .nursing-img {
        height: 130px;
    }
}
.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Yahan 2 ka matlab hai ki sirf 2 lines dikhayi jayengi */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.medical-img {
    width: 100%;
    height: 200px;
    border: 1px solid gainsboro;
}
.medical-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}