.portfolio-img{
    border:1px solid #ececec;
}

#wa-widget-send-button {
    margin: 0 -9px 91px 0 !important;
}

.p-link{
    color: #fff !important;
}

.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 15px 0px;
}

.portfolio-item {
    width: 300px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    transition: transform 5s ease;
}

.portfolio-item:hover img {
    transform: translateY(calc(-100% + 400px));
}


.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-item {
    width: 50%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.project-item img {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    transition: transform 5s ease;
}

.project-item:hover img {
    transform: translateY(calc(-100% + 500px));
}

.task-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 15px 0px;
}


.task-item {
    width: 90%;
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.task-item img {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    transition: transform 5s ease;
}

.task-item:hover img {
    transform: translateY(calc(-100% + 450px));
}

.related-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.related-item img {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    transition: transform 5s ease;
}

.related-item:hover img {
    transform: translateY(calc(-100% + 300px));
}


.portfolio-link {
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.portfolio-link:hover {
    color: #106eea;
    text-decoration: underline;
}

.portfolio-d-link {
    color: #4e95ed;
    text-decoration: none;
    transition: 0.3s;
}

.portfolio-d-link:hover {
    color: #106eea;
    text-decoration: underline;
}

.image-text-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

/* Hide text when hovering over image container */
.project-container:hover .image-text-overlay {
    opacity: 0;
}

.text-red{
    color: #ff414e;
}


.text-yellow{
    color: #FFD700;
}

.success{
    color: dodgerblue;
    font-weight: bold;
    margin-bottom: 10px;
}
