.about__right {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.about__right i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #FFC6D8 0%, #FF7FA7 100%);
    transform: rotate(10deg);
    font-size: 1.25rem;
    color: #FFF;
    box-shadow: 0px 12px 20px 0px #FF7FA74D;
}

.about__ws {
    display: flex;
    flex-direction: column;
}

.about__title {
    font-size: 28px;
    font-weight: 700;
    color: #0B014A;
    font-family: var(--shoor);
    line-height: 1;
}

.about__ws .about__sub_title {
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
}

.section__about_us .row .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.about_description {
    font-size: 14px;
    line-height: 2;
    color: #0B014A;
    opacity: 70%;
    text-align: justify;
}

.about_right_body {
    display: flex;
    flex-direction: column;
}



.about_btn {
    background: linear-gradient(180deg, #A09EFF 0%, #6462F9 100%);
    width: fit-content;
    color: #FFF;
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
}


.about_btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #fff;
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
    border-radius: 1rem;
}

.about_btn:hover {
    color: var(--c1);
    border-color: var(--c1);
}

.about_btn:hover::after {
    opacity: 1;
}

.about_btn i {
    font-size: 0.75rem;
    margin-right: .5rem;
}

.amar-about {
    will-change: transform;
    display: flex;
    position: absolute;
    z-index: 0;
    right: -20px;
    width: 245px;
    height: 88px;
    padding: 10px;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 0 10px 0 #0000001a;
    top: 40px;
    gap: 15px;
}

.img-amar {
    display: flex;
    width: 72px;
    height: 100%;
    min-width: 72px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #F6F7F9, transparent);
    border-radius: 24px;
}

.text-amar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.2;
}

.num_amar {
    font-size: 24px;
    color: #0B014A;
    font-weight: 600;
}

.text-amar span:last-of-type {
    font-size: 14px;
    color: #0B014A;
    opacity: 0.4;
}

.image_part {
    position: relative;

    background-image: url("https://edengift.ir/wp-content/uploads/2026/08/Group-202.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_part>img {
    z-index: 1;
}


/* باکس اول */
.amar-about-1 {
    animation: edenMoveRight 5s ease-in-out infinite alternate;
}

/* باکس دوم */
.amar-about-2 {
    animation: edenMoveLeft 6s ease-in-out infinite alternate;
    right: auto;
    left: 0;
    z-index: 2;
    top: 40%;
}

/* باکس سوم */
.amar-about-3 {
    animation: edenMoveRight 5.5s ease-in-out infinite alternate;
    top: auto;
    bottom: 0;
    z-index: 1;
}


/* فقط حرکت افقی */

@keyframes edenMoveRight {
    from {
        transform: translateX(-25px);
    }

    to {
        transform: translateX(25px);
    }
}

@keyframes edenMoveLeft {
    from {
        transform: translateX(25px);
    }

    to {
        transform: translateX(-25px);
    }
}

.counter-number {
    direction: ltr;
    display: inline-block;
}

.counter-number::before {
    content: "+";
    font-size: 20px;
    margin-right: 5px;
    color: #FF7FA7;
}

.amar-about-3 .counter-number::before {
    color: #6462F9;
}