/* Work Cards */
.work-card-wrapper {
    box-shadow: 0 5px 20px rgba(83, 83, 83, 0.395);
    border-radius: 10px;
    overflow: hidden;
}
.work-card {
    width: 100%;
    height: 250px;
    position: relative;
    /* border-radius: 10px; */
    border: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .work-card {
        height: 200px;
    }
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0px;
}

.overlay {
    background-image: linear-gradient(
        to right,
        rgba(77, 71, 171, 60%),
        rgba(212, 43, 140, 60%),
        rgba(128, 25, 120, 60%)
    );
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    border-radius: 10px 10px 0 0;
    visibility: visible;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: ease-in-out 0.5s;
}

.tech-stack-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay .tech-stack {
    width: fit-content;
    height: fit-content;
    background-color: var(--lightPink);
    color: white;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.281);
}

.work-title {
    font-weight: bold;
    font-size: larger;
}

.work-icon-links a {
    text-align: center;
    padding-top: 6px;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--lightPink);
    color: var(--lightPink);
    border-radius: 50%;
    transition: ease 0.3s;
}

.work-icon-links a:hover {
    background-color: var(--lightPink);
    border-color: var(--lightPink);
    color: white;
}

.hidden {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

input[type="checkbox"] + label {
    color: var(--lightPink);
    border: 1px solid var(--lightPink);
    padding: 0 10px;
    border-radius: 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

input[type="checkbox"]:checked + label {
    color: white;
    background-color: var(--lightPink);
    border: 1px solid var(--lightPink);
}

.work-tag {
    padding: 3px 20px;
    color: var(--lightPink);
    border: 1px solid var(--lightPink);
    border-radius: 5px;
}

.work-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(83, 83, 83, 0.395);
}

.tags-filter {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--lightPink);
}
.modal-dialog {
    max-width: 90vw;
}

.modal-work-img {
    object-fit: cover;
    object-position: center;
    width: 500px;
    height: 100%;
}

@media (max-width: 1000px) {
    .modal-work-img {
        width: 100%;
        height: 100%;
    }
}

.work-btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.zoom img {
    z-index: 2;
    transition: transform 0.5s; /* Animation */
}

.zoom:hover img {
    transform: scale(1.1);
}
