body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0; /* Lighter grey background */
}

.container {
    max-width: 2000px; /* Increased max-width */
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md-4 {
    flex: 0 0 calc(33.33% - 20px);
    margin-bottom: 20px;
    border: 2px solid #ccc; /* Box border */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden;
    background-color: #fff; /* White background */
}

.work-box {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.work-box:hover img {
    transform: scale(1.1);
}

.work-img {
    display: block;
    overflow: hidden;
}

.work-img img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.work-content {
    padding: 20px;
    text-align: center;
}

.work-content a {
    text-decoration: none; /* Remove underline from the <a> tag */
}

.w-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000; /* Black title text */
}

.w-title:hover {
    text-decoration: none; /* Remove underline on hover */
}

.w-more {
    color: #4e4e4e;
    font-size: 14px;
}

.w-ctegory {
    color: #0078ff;
}

.w-like {
    font-size: 24px;
    color: #0078ff;
}
