.serviceBox{
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.serviceBox:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Icon Styling */
.serviceBox .service-icon{
    font-size: 45px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto 15px;
    border-radius: 20px;
    color: #fff;
    /*background: linear-gradient(135deg, #1c7ac0, #2ebef3);*/
    /*box-shadow: 0 8px 20px rgba(0,0,0,0.2);*/
    transition: 0.4s;
}

/* Icon hover rotate */
.serviceBox:hover .service-icon{
    transform: rotate(10deg) scale(1.1);
}

/* Title */
.serviceBox .title{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #185d8b;
}

/* Description */
.serviceBox .description{
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
    color: #555;
}

/* Button */
.serviceBox .read-more{
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #185d8b, #2ebef3);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Button Hover */
.serviceBox .read-more:hover{
    background: linear-gradient(135deg, #2ebef3, #185d8b);
    letter-spacing: 1px;
}

/* Color Variations */
.serviceBox.pink .service-icon{
    background: linear-gradient(135deg, #db1557, #ff2b87);
}
.serviceBox.orange .service-icon{
    background: linear-gradient(135deg, #f96407, #f98e1b);
}

/* Responsive */
@media only screen and (max-width: 990px){
    .serviceBox{
        margin-bottom: 30px;
    }
}