.serviceBox {
    color: #888;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 20px;
    border-radius: 20px 50px;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        0 4px 6px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.serviceBox:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* ICON STYLING */
.serviceBox .service-icon {
    color: #fff;
    font-size: 50px;
    line-height: 110px;
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    border-radius: 50px 0;
    position: relative;
    z-index: 1;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 3px 5px rgba(255, 255, 255, 0.2);
}

.serviceBox .service-icon:before {
    content: '';
    border-radius: 50%;
    position: absolute;
    left: 10px;
    bottom: 10px;
    top: 10px;
    right: 10px;
    z-index: -1;
}

/* TITLE */
.serviceBox .title {
    color: #0288D1;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}

/* DESCRIPTION */
.serviceBox .description {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.5px;
    text-align: justify;
    color: #222;
}

/* COLOR THEMES */
.serviceBox.blue .service-icon {
    background: linear-gradient(135deg, #2ebef3, #1c7ac0);
}
.serviceBox.blue .title { color: #1c7ac0; }

.serviceBox.pink .service-icon {
    background: linear-gradient(135deg, #ff2b87, #db1557);
}
.serviceBox.pink .title { color: #db1557; }

.serviceBox.orange .service-icon {
    background: linear-gradient(135deg, #f98e1b, #f96407);
}
.serviceBox.orange .title { color: #f96407; }

/* READ MORE BUTTON */
.serviceBox .read-more {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 18px;
    display: inline-block;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.serviceBox .read-more:before {
    content: '';
    background: linear-gradient(135deg, #0288D1, #00b4ff);
    height: 100%;
    width: 100%;
    transform: scale(1.1) skew(-20deg);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s;
    border-radius: inherit;
}
.serviceBox .read-more:hover {
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 136, 209, 0.4);
}

/* RESPONSIVE */
@media only screen and (max-width: 990px) {
    .serviceBox {
        margin: 0 0 30px;
    }
}
