.serviceBox{
    color: var(--main-color);
    font-family: 'Phudu', cursive;
    text-align: center;
    padding: 40px 25px;
    border: 1px solid var(--main-color);
    border-radius: 100px 0 20px 20px;
    position: relative;
    z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    background: #52c005;
    width:calc(100% - 15px);
    height:calc(100% - 15px);
    border-radius: 100px 0 20px 20px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}
.serviceBox:after{
    background: #fff;
    width:calc(100% - 35px);
    height:calc(100% - 35px);
    border-radius: 0 0 0 100px;
    box-shadow: 0 0 8px rgba(0, 0, 0 ,0.5);
}
.serviceBox .service-icon{
    font-size: 45px;
    line-height: 45px;
    margin: 0 0 15px;
}
.serviceBox .title{
    font-size: 22px;
    font-weight: 600;
    padding: 5px 5px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 2px solid var(--main-color);
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.serviceBox .description{
    color: #000000;
    font-size: 13.5px;
    line-height: 24px;
    letter-spacing: 1px;   
    margin: 0;
}
.serviceBox.yellow{--main-color:#f38f00; }
.serviceBox.green{ --main-color:#f02222; }
.serviceBox.purple{ --main-color:#7c084c; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 40px; }
}
.tabs {
display: flex;
}
.tab-button {
padding: 10px;
cursor: pointer;
border: 1px solid #ccc;
border-bottom: none;
background-color: #f1f1f1;
margin-right: 5px;
}
.tab-button.active {
background-color: #fff;
border-bottom: 1px solid #fff;
}
.tab-content {
display: none;
border: 1px solid #ccc;
padding: 10px;
}
.tab-content.active {
display: block;
}

