.service-item{
    background-color: #c3c8ff99;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    --kidden-readmore-size: 45px;
}

.service-item .service-icon{
    width: 100px;
    margin-bottom: 20px;
    font-size: 80px;
    color: var(--kidden-primary-color, #C8F31D);
    position: relative;
    z-index: 1;
}
.service-item .service-icon svg,
.service-item .service-icon img{
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-icon img{
    transform: scale(1.05);
}

.service-item .service-heading{
    font-family: var(--kidden-primary-font, "Syne");
    font-size: 20px;
    font-weight: 600;
    color: var(--kidden-dark-color, #000000);
    line-height: 1.7;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.service-item .service-desc{
    font-family: var(--kidden-secondary-font, "DM Sans");
    font-size: 17px;
    line-height: 27px;
    color: var(--kidden-grey-color, #5d6374);
    letter-spacing: -0.2px;
    margin: 0;
}

.service-item.style-3:hover,
.service-item.style-1:hover{
    transform: translateY(-3px);
}

.service-item.style-1 a {
    background: transparent;
    font-size: 25px;
    color: var(--kidden-grey-color, #5d6374);
    border: 1px solid #acacb5;
    width: var(--kidden-readmore-size);
    height: var(--kidden-readmore-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 15px;
}

.service-item.style-1 a:hover {
    background-color: var(--kidden-primary-color, #C8F31D);
    color: #fff;
    border: 1px solid var(--kidden-primary-color, #C8F31D);
}

/* Style 2 */
.service-item.style-2 {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0px 1px 3px rgba(3, 4, 28, 0.10);
    padding: 50px 20px;
    border-radius: 0;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.service-item.style-2 .service-icon{
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item.style-2 .service-icon:before {
    background: linear-gradient(145.27deg, rgba(255, 255, 255, 0.1) 15.55%, rgba(255, 255, 255, 0) 86.81%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.service-item.style-2 .service-icon img{
    width: auto;
    height: 60px;
    margin: 0 auto;
}

.service-item.style-2 .service-heading,
.service-item.style-2 .service-desc{
    color: #fff;
}

.service-item.style-2 a {
    background: var(--kidden-primary-color, linear-gradient(45deg, rgba(101, 182, 255, 1) 0%, rgba(75, 131, 255, 1) 100%));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--kidden-readmore-size);
    height: var(--kidden-readmore-size);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: calc(var(--kidden-readmore-size) / -2);
    transform: translateX(-50%);
    box-shadow: 0 20px 40px 0 rgba(21, 126, 251, 0.8);
}

.service-item.style-2 a:hover{
    box-shadow: none;
}

/* Style 3 */
.service-item.style-3{
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 40px 0 rgba(40.000000000000156, 20.000000000000014, 130, .10);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    position: relative;
}

.service-item.style-3:before {
    background: var(--kidden-primary-color, linear-gradient(45deg, rgba(101, 182, 255, 1) 0%, rgba(75, 131, 255, 1) 100%));;
    content: "";
    width: 0;
    height: 3px;
    left: auto;
    bottom: 0;
    position: absolute;
    right: 0;
    -webkit-transition: width .5s cubic-bezier(.25, .10, .25, 1) 0s;
    transition: width .5s cubic-bezier(.25, .10, .25, 1) 0s;
}

.service-item.style-3:hover:before {
    width: 100%;
    left: 0;
    right: auto;
    margin: 0;
}

.service-item.style-3 .service-icon{
    margin: 0 auto;
}