.vxr_project1_main_box {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

.vxr_project1_bg_canvas {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(179, 107, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(148, 61, 255, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(92, 79, 138, 0.08) 0%, transparent 70%);
    animation: vxr_project1_pulse 15s ease-in-out infinite;
}

@keyframes vxr_project1_pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.vxr_project1_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%),
            repeating-linear-gradient(
                    0deg,
                    rgba(255, 107, 168, 0.03) 0px,
                    transparent 2px,
                    transparent 4px,
                    rgba(255, 107, 168, 0.03) 6px
            );
    pointer-events: none;
}

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

.vxr_project1_header {
    text-align: center;
    margin-bottom: 80px;
}

.vxr_project1_title {
    font-size: 52px;
    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 20px rgba(255, 107, 168, 0.3));
}

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

.vxr_project1_section_title {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.vxr_project1_section_number {
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(135deg, #ab6bff, #9a3dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.vxr_project1_section_title h3 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.vxr_project1_section_intro {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 50px;
    max-width: 900px;
}

.vxr_project1_projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.vxr_project1_project {
    position: relative;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(139, 107, 255, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vxr_project1_project_wide {
    grid-column: span 2;
}

.vxr_project1_project_bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 168, 0.05), rgba(255, 61, 138, 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vxr_project1_project::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(161, 107, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vxr_project1_project:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(149, 107, 255, 0.6);
    box-shadow: 0 20px 60px rgba(161, 107, 255, 0.3),
            inset 0 0 40px rgba(149, 107, 255, 0.1);
}

.vxr_project1_project:hover .vxr_project1_project_bg {
    opacity: 1;
}

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

.vxr_project1_project_icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.vxr_project1_project_content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.vxr_project1_project_title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px;
    line-height: 1.3;
}

.vxr_project1_project_text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.vxr_project1_project_list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.vxr_project1_project_list li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.vxr_project1_project_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #a66bff, #843dff);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(149, 107, 255, 0.6);
}

.vxr_project1_project_link {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    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);
    border-radius: 50%;
    color: #b26bff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 5px 15px rgba(156, 107, 255, 0.2);
}

.vxr_project1_project_link:hover {
    background: linear-gradient(135deg, #b26bff, #9a3dff);
    color: #ffffff;
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 10px 25px rgba(156, 107, 255, 0.5);
}

.vxr_project1_project_link i {
    transition: transform 0.4s ease;
}

.vxr_project1_project:hover .vxr_project1_project_link {
    transform: scale(1.05);
}

.vxr_project1_project_number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 120px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(161, 107, 255, 0.1), rgba(110, 61, 255, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.vxr_project1_project:hover .vxr_project1_project_number {
    background: linear-gradient(135deg, rgba(161, 107, 255, 0.3), rgba(132, 61, 255, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.vxr_project1_footer {
    text-align: center;
}

.vxr_project1_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #906bff, #7e3dff);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(149, 107, 255, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.vxr_project1_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b3dff, #ae6bff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vxr_project1_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(174, 107, 255, 0.7);
}

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

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

.vxr_project1_btn i {
    transition: transform 0.3s ease;
}

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

.vxr_project1_footer_text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0 0;
    font-style: italic;
}

@media (max-width: 1024px) {
    .vxr_project1_projects {
        grid-template-columns: 1fr;
    }

    .vxr_project1_project_wide {
        grid-column: span 1;
    }

    .vxr_project1_title {
        font-size: 42px;
    }

    .vxr_project1_subtitle {
        font-size: 18px;
    }

    .vxr_project1_section_title h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .vxr_project1_main_box {
        padding: 80px 0;
    }

    .vxr_project1_header {
        margin-bottom: 50px;
    }

    .vxr_project1_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .vxr_project1_subtitle {
        font-size: 16px;
    }

    .vxr_project1_section_title {
        gap: 15px;
        margin-bottom: 15px;
    }

    .vxr_project1_section_number {
        font-size: 60px;
    }

    .vxr_project1_section_title h3 {
        font-size: 24px;
    }

    .vxr_project1_section_intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .vxr_project1_projects {
        gap: 20px;
        margin-bottom: 50px;
    }

    .vxr_project1_project {
        padding: 30px;
    }

    .vxr_project1_project_icon {
        width: 70px;
        height: 70px;
    }

    .vxr_project1_project_icon lord-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .vxr_project1_project_title {
        font-size: 20px;
    }

    .vxr_project1_project_text {
        font-size: 15px;
    }

    .vxr_project1_project_list li {
        font-size: 15px;
    }

    .vxr_project1_project_link {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .vxr_project1_project_number {
        font-size: 80px;
        bottom: 15px;
        right: 15px;
    }

    .vxr_project1_btn {
        padding: 16px 40px;
        font-size: 16px;
    }

    .vxr_project1_footer_text {
        font-size: 16px;
        margin-top: 20px;
    }
}

.vxr_project1_project.aos-init.vxr7CDBA {
    --mouse-x: 31.95364238410596%;
    --mouse-y: 17.743354182955436%;
}

.vxr057B7 {
    width: 90px;
    height: 90px;
}

.vxr_project1_project.aos-init.vxr45CB2 {
    --mouse-x: 14.072847682119205%;
    --mouse-y: -0.08307271305707584%;
}

.vxr0C02B {
    width: 90px;
    height: 90px;
}

.vxr_project1_project.vxr_project1_project_wide.aos-init.vxr3C857 {
    --mouse-x: 96.68820678513733%;
    --mouse-y: 44.64598947536278%;
}

.vxrE2CB2 {
    width: 90px;
    height: 90px;
}

.vxr4E9E6 {
    width: 90px;
    height: 90px;
}