.vxr_experts1_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_experts1_main_box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 35%, rgba(149, 107, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(110, 61, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.vxr_experts1_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_experts1_subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

.vxr_experts1_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.vxr_experts1_card {
    position: relative;
    perspective: 1000px;
}

.vxr_experts1_card_inner {
    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_experts1_card_inner::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_experts1_card:hover .vxr_experts1_card_inner {
    transform: translateY(-10px);
    border-color: rgba(156, 107, 255, 0.4);
    box-shadow: 0 25px 60px rgba(156, 107, 255, 0.3);
}

.vxr_experts1_card:hover .vxr_experts1_card_inner::before {
    opacity: 1;
}

.vxr_experts1_image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.vxr_experts1_card:hover .vxr_experts1_image img {
    transform: scale(1.1);
}

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

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

.vxr_experts1_name {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.vxr_experts1_social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.vxr_experts1_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(178, 107, 255, 0.2), rgba(154, 61, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 107, 255, 0.3);
    color: #b26bff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.vxr_experts1_social a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(156, 107, 255, 0.5);
}

.vxr_experts1_social a:hover::before {
    opacity: 1;
}

.vxr_experts1_social a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.vxr_experts1_social a:hover i {
    color: #ffffff;
}

.vxr_experts1_about {
    color: #9f9aa9;
    line-height: 21px;
}

.vxr_experts1_about p {
    margin: 7px 0;
}

.vxr_experts1_projects {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(156, 107, 255, 0.15);
}

.vxr_experts1_projects_label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vxr_experts1_projects_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 32px;
}

.vxr_experts1_project_tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(178, 107, 255, 0.15), rgba(154, 61, 255, 0.08));
    border: 1px solid rgba(156, 107, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #9c6bff;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.vxr_experts1_project_tag:hover {
    background: linear-gradient(135deg, rgba(178, 107, 255, 0.25), rgba(154, 61, 255, 0.15));
    border-color: rgba(156, 107, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .vxr_experts1_grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vxr_experts1_main_box {
        padding: 80px 0;
    }

    .vxr_experts1_header {
        margin-bottom: 50px;
    }

    .vxr_experts1_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .vxr_experts1_subtitle {
        font-size: 16px;
    }

    .vxr_experts1_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vxr_experts1_image {
        height: 280px;
    }

    .vxr_experts1_content {
        padding: 25px;
        gap: 18px;
    }

    .vxr_experts1_name {
        font-size: 20px;
    }

    .vxr_experts1_social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .vxr_experts1_projects_label {
        font-size: 12px;
    }

    .vxr_experts1_project_tag {
        font-size: 12px;
        padding: 5px 12px;
    }
}