.vxr_certificates1_main_box {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 5, 15, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    overflow: hidden;
}

.vxr_certificates1_main_box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 35%, rgba(149, 107, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(110, 61, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.vxr_certificates1_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vxr_certificates1_header {
    text-align: center;
    margin-bottom: 70px;
}

.vxr_certificates1_title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px;
    background: linear-gradient(135deg, #ae2cff6e, #b26bff, #db8bff75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(156, 107, 255, 0.5));
}

.vxr_certificates1_subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

.vxr_certificates1_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.vxr_certificates1_item {
    position: relative;
    background: rgba(10, 5, 15, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 107, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.vxr_certificates1_item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(149, 107, 255, 0.08), rgba(103, 61, 255, 0.04));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.vxr_certificates1_item:hover {
    transform: translateY(-10px);
    border-color: rgba(156, 107, 255, 0.4);
    box-shadow: 0 25px 60px rgba(156, 107, 255, 0.3);
}

.vxr_certificates1_item:hover::before {
    opacity: 1;
}

.vxr_certificates1_image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.vxr_certificates1_item:hover .vxr_certificates1_image img {
    transform: scale(1.1);
}

.vxr_certificates1_image_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 5, 15, 0.7) 100%);
    pointer-events: none;
}

.vxr_certificates1_content {
    position: relative;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    z-index: 1;
}

.vxr_certificates1_item_title {
    font-size: 24px;
    font-weight: 600;
    color: #b26bff;
    margin: 0;
    line-height: 1.3;
}

.vxr_certificates1_text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.vxr_certificates1_text a {
    color: #9c6bff;
    text-decoration: none;
    border-bottom: 1px solid rgba(156, 107, 255, 0.3);
    transition: all 0.3s ease;
}

.vxr_certificates1_text a:hover {
    color: #b26bff;
    border-bottom-color: #b26bff;
}

.vxr_certificates1_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #b26bff, #9a3dff);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(156, 107, 255, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.vxr_certificates1_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9a3dff, #b26bff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vxr_certificates1_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(156, 107, 255, 0.6);
}

.vxr_certificates1_btn:hover::before {
    opacity: 1;
}

.vxr_certificates1_btn span,
.vxr_certificates1_btn i {
    position: relative;
    z-index: 1;
}

.vxr_certificates1_btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 1024px) {
    .vxr_certificates1_grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .vxr_certificates1_title {
        font-size: 44px;
    }

    .vxr_certificates1_subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .vxr_certificates1_main_box {
        padding: 80px 0;
    }

    .vxr_certificates1_header {
        margin-bottom: 50px;
    }

    .vxr_certificates1_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .vxr_certificates1_subtitle {
        font-size: 16px;
    }

    .vxr_certificates1_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vxr_certificates1_image {
        height: 240px;
    }

    .vxr_certificates1_content {
        padding: 30px 25px;
        gap: 18px;
    }

    .vxr_certificates1_item_title {
        font-size: 20px;
    }

    .vxr_certificates1_text {
        font-size: 15px;
    }

    .vxr_certificates1_btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vxr_certificates1_grid {
        grid-template-columns: 1fr;
    }
}