.logo-area img{
   /*border-bottom-left-radius: 10px;*/
   /* border-bottom-right-radius: 10px;*/
    margin: 2px;
    border-radius: 10px;
}

.service_box {
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    text-align: center;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2),
    1px 2px 15px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.service_box:hover {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25),
    -8px -8px 20px rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

.imgMoving .imgMovingBox img {
    animation: upDown 4s ease-in-out infinite;
}
.imgMovingBox img {
    animation: upDown 4s ease-in-out infinite;
}

/* Keyframes for smooth continuous up-down motion */
@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.bg_dark_text_box{
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
}
.footer_bg{
    background-color: #000000;
}

/*.footer_bg .logo img{*/
/*    border-radius: 10px;*/
/*}*/

.footer_bg .footer-wized-wrapper .single .title{
    color: #fff;
}

.portfolio-box{
    padding: 10px;
    background-color: floralwhite;
    border-radius: 5px;
    text-align: center;
}

.portfolio-box h3{
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
}