.vxr_about40_main_box {
    padding: 100px 0;
    background: #0a0806;
    position: relative;
    overflow: hidden;
    --ring-radius: 20px;
    --ring-thickness: 2px;
    --ring-opacity: 0.8;
    --ring-speed: 3s;
    --ring-c1: #FFB800;
    --ring-c2: #ffc933;
}

.vxr_about40_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.vxr_about40_bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://elements-resized.envatousercontent.com/envato-dam-assets-production/371d7325-6f9e-4063-8601-5e556e74fdbb/b81b79d7-275f-4f4b-8a3d-f410143b6af8.jpg?w=1600&cf_fit=scale-down&q=85&format=auto&s=1d34d53e5a4718d08b43dfd1fef107fbf14d942d696a63c2032ea96d270c39e7');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.vxr_about40_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(35 26 17 / 85%) 0%, rgb(20 16 12 / 69%) 50%, rgb(10 8 6 / 57%) 100%);
}

.vxr_about40_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

.vxr_about40_section_title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 30px;
    position: relative;
    display: inline-block;
}

.vxr_about40_section_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
}

.vxr_about40_intro_text {
    font-size: 18px;
    line-height: 1.8;
    color: #b8b3ac;
    max-width: 900px;
    margin: 0 auto;
}

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

.vxr_about40_service_card {
    background: rgba(20, 16, 12, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vxr_about40_service_card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 184, 0, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.vxr_about40_service_card:hover::after {
    opacity: 1;
}

.vxr_about40_service_card:hover {
    transform: translateY(-10px);
    background: rgba(20, 16, 12, 0.85);
}

@property --_angle {
    syntax:"<angle>";
    initial-value:0turn;
    inherits:false;
}

@supports (background: conic-gradient(red, blue)) {
    .ring-sweep{
        position: relative;
        isolation: isolate;
        border-radius: var(--ring-radius);
        contain: paint;
    }

    .ring-sweep::before{
        --_angle: 0turn;
        content:"";
        position:absolute;
        inset:0;
        border-radius:inherit;
        padding:var(--ring-thickness);
        pointer-events:none;
        opacity: 0;
        transition: opacity .25s ease, filter .25s ease;
        will-change: transform;
        background:
                conic-gradient(from var(--_angle),
                transparent 0deg 4deg,
                var(--ring-c1) 80deg 16deg,
                transparent 20deg 176deg,
                var(--ring-c2) 230deg 188deg,
                transparent 192deg 356deg);
        -webkit-mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
        -webkit-mask-composite:xor;
        mask-composite:exclude;
        filter: drop-shadow(0 0 12px rgba(255, 184, 0, .25))
        drop-shadow(0 0 24px rgba(255, 184, 0, .15));
        animation: none;
        animation-play-state: paused;
        z-index: 10;
    }

    @media (hover: hover){
        .ring-sweep[data-ring="hover"]:hover::before,
        .ring-sweep:not([data-ring]):hover::before{
            animation: vxr_about40_ring_spin var(--ring-speed) linear infinite;
            animation-play-state: running;
            opacity: 1;
            filter: drop-shadow(0 0 16px rgba(255, 184, 0, .35))
            drop-shadow(0 0 36px rgba(255, 184, 0, .2));
        }
    }

    .ring-sweep[data-ring="always"]::before{
        animation: vxr_about40_ring_spin var(--ring-speed) linear infinite;
        animation-play-state: running;
        opacity: 1;
        filter: drop-shadow(0 0 16px rgba(255, 184, 0, .35))
        drop-shadow(0 0 36px rgba(255, 184, 0, .2));
    }

    .ring-sweep[data-ring="off"]::before{
        animation: none !important;
        opacity: 0 !important;
        filter: none !important;
    }

    @keyframes vxr_about40_ring_spin{
        to{ --_angle: 1turn; }
    }
}

@supports not (background: conic-gradient(red, blue)) {
    .ring-sweep{
        box-shadow:
                0 0 0 var(--ring-thickness) rgba(255, 184, 0, .9) inset,
                0 0 24px rgba(255, 184, 0, .35),
                0 0 48px rgba(255, 184, 0, .2);
    }
}

@media (prefers-reduced-motion: reduce){
    .ring-sweep::before{
        animation: none !important;
    }
}

.vxr_about40_icon_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.vxr_about40_card_title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
    position: relative;
    z-index: 2;
}

.vxr_about40_card_text {
    font-size: 15px;
    line-height: 1.7;
    color: #b8b3ac;
    margin: 0;
    position: relative;
    z-index: 2;
}

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

.vxr_about40_feature_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(20, 16, 12, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 184, 0, 0.1);
    transition: all 0.3s ease;
}

.vxr_about40_feature_item:hover {
    background: rgba(20, 16, 12, 0.7);
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vxr_about40_feature_icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFB800, #ffc933);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vxr_about40_feature_icon i {
    font-size: 24px;
    color: #0a0806;
}

.vxr_about40_feature_content {
    flex: 1;
}

.vxr_about40_feature_title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.vxr_about40_feature_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b3ac;
    margin: 0;
}

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

@media (max-width: 1024px) {
    .vxr_about40_main_box {
        padding: 80px 0;
    }

    .vxr_about40_container {
        padding: 0 30px;
    }

    .vxr_about40_section_title {
        font-size: 42px;
    }

    .vxr_about40_intro_text {
        font-size: 17px;
    }

    .vxr_about40_intro {
        margin-bottom: 60px;
    }

    .vxr_about40_services_grid {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .vxr_about40_main_box {
        padding: 60px 0;
    }

    .vxr_about40_container {
        padding: 0 20px;
    }

    .vxr_about40_section_title {
        font-size: 36px;
    }

    .vxr_about40_intro_text {
        font-size: 16px;
    }

    .vxr_about40_intro {
        margin-bottom: 50px;
    }

    .vxr_about40_services_grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .vxr_about40_service_card {
        padding: 35px 25px;
    }

    .vxr_about40_features_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vxr_about40_feature_item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .vxr_about40_section_title {
        font-size: 28px;
    }

    .vxr_about40_intro_text {
        font-size: 15px;
    }

    .vxr_about40_card_title {
        font-size: 20px;
    }

    .vxr_about40_card_text {
        font-size: 14px;
    }

    .vxr_about40_feature_title {
        font-size: 16px;
    }

    .vxr_about40_feature_desc {
        font-size: 13px;
    }
}

.vxr34FAD {
    width: 80px;
    height: 80px;
}

.vxr3B87F {
    width: 80px;
    height: 80px;
}

.vxrD7EE0 {
    width: 80px;
    height: 80px;
}

.vxr17D61 {
    width: 80px;
    height: 80px;
}

.vxr4CF26 {
    width: 80px;
    height: 80px;
}

.vxr12887 {
    width: 80px;
    height: 80px;
}