.partImg {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partImg:hover {
    transform: scale(1.03);
    filter: brightness(1.07);
}

.flex-container {
    position: relative;
    display: flex;
    border-radius: 1.5rem;
    transition: transform 0.25s;
    max-width: 100%;
}

.zoom {
    transition: transform 0.25s;
}

.zoom:hover{
    transform: scale(1.04);
}

.custom-text{
    display: inline-block;
}

.beautiful-btn {
    background: white;
    text-decoration: none;
    color: black;
    border-radius: 1.5rem;
    border: 0.15rem solid #ff3cec;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.beautiful-btn:hover {
    background: black;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.beautiful-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
