.vxr_services59_main_box {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vxr_services59_bg_shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.vxr_services59_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.vxr_services59_shape1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.vxr_services59_shape2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.vxr_services59_container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.vxr_services59_header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.vxr_services59_label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.1));
    border-radius: 50px;
    color: #0077b6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vxr_services59_title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #0a2463;
    margin: 0 0 20px;
    line-height: 1.2;
}

.vxr_services59_desc {
    font-size: 18px;
    color: #5a6a85;
    line-height: 1.7;
    margin: 0;
}

.vxr_services59_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.vxr_services59_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.vxr_services59_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10, 36, 99, 0.15);
}

.vxr_services59_card_image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vxr_services59_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vxr_services59_card:hover .vxr_services59_card_image img {
    transform: scale(1.1);
}

.vxr_services59_card_icon {
    position: absolute;
    bottom: -28px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
    z-index: 2;
}

.vxr_services59_card_content {
    padding: 36px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vxr_services59_card_title {
    font-size: 20px;
    font-weight: 700;
    color: #0a2463;
    margin: 0 0 14px;
    line-height: 1.3;
}

.vxr_services59_card_title a {
    color: #0a2463;
}

.vxr_services59_card_text {
    font-size: 15px;
    color: #5a6a85;
    line-height: 1.65;
    margin: 0 0 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vxr_services59_card_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0077b6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.vxr_services59_card_link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.vxr_services59_card:hover .vxr_services59_card_link {
    color: #00b4d8;
}

.vxr_services59_card:hover .vxr_services59_card_link i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .vxr_services59_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .vxr_services59_main_box {
        padding: 80px 0;
    }
    .vxr_services59_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .vxr_services59_main_box {
        padding: 60px 0;
    }
    .vxr_services59_header {
        margin-bottom: 40px;
    }
    .vxr_services59_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vxr_services59_card_image {
        height: 180px;
    }
    .vxr_services59_card_content {
        padding: 30px 20px 20px;
    }
    .vxr_services59_title {
        font-size: 28px;
    }
    .vxr_services59_desc {
        font-size: 16px;
    }
}