.service {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(90deg, #ffffff 0%, #ecf1f5 100%);
}

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 150, 254, 0.15);
    border-color: rgba(7, 150, 254, 0.3);
}

.service .service-item img {
    max-height: 60px;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.4s ease;
}

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

.service .service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #092a49;
    letter-spacing: 0.5px;
}

.service .service-item p {
    margin-bottom: 25px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.service .service-item a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #0796fe;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    padding: 10px 20px;
}

.service .service-item a::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #0796fe;
    transition: width 0.3s ease;
}

.service .service-item:hover a::after {
    width: 80px;
}

.service .service-item:hover a.btn {
    color: #ffffff;
    background: #092a49;
    border-color: #092a49;
}

.service-foot {
    margin-top: auto;
    padding-top: 15px;
    position: relative;
}

@media (max-width: 768px) {
    .service {
        padding: 60px 0;
    }
}