.about-ra {
    padding: 90px 0;
    color: #fff;
    background-image: url(../images/RA-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.about-ra::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(337deg,
            rgba(172, 171, 171, 0.779) 0%,
            rgba(0, 0, 0, 0.779) 47%);
    z-index: 1;
    /* 🔥 KEY */
}

.about-ra .container {
    position: relative;
    z-index: 3;
}

.about-ra .about-ra-content h6 {
    color: #ffc517;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-ra .about-ra-content h6::after {
    position: absolute;
    content: "";
    top: 7px;
    left: 168px;
    width: 73px;
    height: 3px;
    background-color: #ffc517;
}

.about-ra .about-ra-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.about-ra .about-ra-content h2 span {
    color: #ffc517;
}

.about-ra .about-ra-content p {
    color: #efefef;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-ra .ra-points {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-ra .ra-points li {
    position: relative;
    font-family: "Jost", sans-serif;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 20px;
}

.about-ra .ra-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc517;
    font-weight: bold;
}

.about-ra .ra-btn {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, #ffc517, #ffdb4d);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    font-family: "Jost", sans-serif;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(255, 197, 23, 0.35);
}

.about-ra .ra-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.5),
            transparent 70%);
    animation: shineMove 2.2s ease-in-out infinite;
}

.about-ra .ra-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(255, 197, 23, 0.6);
    background: linear-gradient(135deg, #3b3b3b, #ffea75);
    color: #fff;
}

.about-ra .ra-btn:hover::before {
    animation-duration: 1.2s;
}

@keyframes shineMove {
    0% {
        left: -150%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}


.about-ra .about-ra-card .card-box {
    position: relative;
    background: linear-gradient(180deg, #11162a, #0b0f19);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-ra .card-box h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

.about-ra .card-box .info {
    margin-bottom: 18px;
}

.about-ra .card-box .info span {
    display: block;
    font-size: 12px;
    color: #9aa3b2;
}

.about-ra .card-box .info p {
    font-size: 14px;
    font-weight: 600;
}

.about-ra .badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: #ffc517;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.about-ra .ra-image-box {
    position: relative;
    margin-bottom: 25px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.about-ra .ra-image-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-ra .ra-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffc517;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.about-ra .ra-image-unique {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 35px;
}

.about-ra .ra-image-inner {
    position: relative;
    padding: 4px;
    border-radius: 28px 28px 80px 28px;
    z-index: 2;
}

.about-ra .ra-image-inner img {
    width: 100%;
    height: 386px;
    object-fit: cover;
    border-radius: 24px 24px 76px 24px;
}

.about-ra .glow-ring {
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at top left, rgb(255 255 255), #000000 70%);
    border-radius: 32px 32px 90px 32px;
    z-index: 1;
}

.about-ra .ra-badge {
    position: absolute;
    bottom: -18px;
    right: -12px;
    background: #0b0f19;
    border: 2px solid #ffc517;
    padding: 10px 25px;
    border-radius: 16px;
    text-align: center;
    z-index: 3;
}

.about-ra .ra-badge span {
    display: block;
    color: #ffc517;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

.ra-badge small {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

.about-ra #ra-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}


.about-ra .about-ra-card {
    position: relative;
}

.about-ra .about-ra-card .ab-mou {
    position: absolute;
    bottom: -322px;
    padding: 44px;
    border: 12px solid rgb(255 255 255);
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 4%, rgba(0, 0, 0, 0) 47%);
    height: 100%;
    max-height: 600px;
    min-height: 590px;
    width: 100%;
}

.about-ra .ra-corner-box {
    position: absolute;
    top: 22px;
    left: -79px;
    background: #000000;
    border: 1px solid #ffc517;
    padding: 10px 20px;
    border-radius: 12px;
    text-align: left;
    z-index: 5;
}

.about-ra .ra-corner-box p {
    font-size: 20px;
}

.about-ra .ra-corner-box span {
    font-size: 20px;
    letter-spacing: 2px;
    color: #ffc517;
    font-weight: 600;
    padding-right: 5px;
}

.about-ra .about-ra-card .ra-image-unique {
    margin-top: 15px;
}

/*********** responsive start **********/
@media (min-width:1200px) and (max-width:1399px) {
    .about-ra .about-ra-card .ab-mou {
        position: absolute;
        bottom: -350px;
    }
}







/*********** mobile responsive **********/
@media (max-width:990px) {
    .about-ra .about-ra-content h6::after {
        top: 7px;
        left: 184px;
    }

    .about-ra .about-ra-card .ab-mou {
        margin-top: 20px;
        position: relative;
        bottom: 0;
    }

    .about-ra {
        padding: 90px 0px 0px 0px;
    }

    .about-ra .ra-corner-box {
        top: 11px;
        left: -16px;
    }

    .about-ra .about-ra-card .ab-mou {
        padding: 44px 20px;
    }
}