.how-we-do-left-content {
    flex: none;
    width: 255px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.how-we-do-left-content .top .section-title {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 13px;
}

.how-we-do-left-content .top .section-subtitle {
    margin-bottom: 20px;
    color: var(--primary_color2);
}

.how-we-do-left-content .top p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}

.how-we-do-right-content {
    flex: 1;
    padding: 20px 0;
}

.how-we-do-left-content .theme-btn::before,
.how-we-do-left-content .theme-btn::after {
    background: #ffffff;
}

.how-we-do-left-content .theme-btn:hover {
    color: var(--dark1);
}

.how-we-do-left-content .theme-btn:hover svg path {
    fill: var(--dark1);
}

.how-we-do-right-content .how-we-do-items {
    gap: 100px;
}

.how-we-do-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 32px 15px 15px;
    gap: 26px;
    position: relative;
    min-width: 255px;
}

.how-we-do-card .how-we-do-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: var(--primary_light2);
}

.how-we-do-card .how-we-do-content {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
}

.how-we-do-card .how-we-do-content h5 {
    color: var(--primary_color);
    font-size: 17px;
    margin-bottom: 5px;
}

.how-we-do-card .how-we-do-content h5 a {
    color: var(--primary_color);
}

.how-we-do-card .how-we-do-content p {
    margin: 0;
    color: rgb(28 28 28 / 85%);
}


.how-we-do-right-content .how-we-do-items+.how-we-do-items {
    margin-top: 80px;
}

.how-we-do-right-content .how-we-do-items .how-we-do-card .circle-shape {
    position: absolute;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    top: 50%;
    margin-top: -10px;
}

.how-we-do-right-content .how-we-do-items .how-we-do-card .circle-shape:before {
    content: '';
    border-radius: 50%;
    background: var(--primary_color);
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:first-child .circle-shape {
    display: none;
}

.how-we-do-right-content .how-we-do-items .how-we-do-card .line-shape {
    position: absolute;
    background-image: url('/assets/images/linenew.png');
    background-repeat: no-repeat;
    height: 1px;
    width: 268px;
    background-size: cover;
    right: -100px;
    top: 50%;
}

.how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card+.how-we-do-card .line-shape {
    right: auto;
    left: -100px;
}

.how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:last-child .line-shape {
    height: 170px;
    /* border-right: 1px dashed #ffffff;
    border-bottom: 1px dashed #ffffff;
    border-radius: 0 30px 30px 0; */
    background-image: url('/assets/images/linenew2.png');
    background-repeat: round;

}

.how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape {
    background-image: url("/assets/images/dashed-line.svg");
}

.how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape {
    right: auto;
    left: -84px;
    background-image: url('/assets/images/linenew3.png');
    background-repeat: round;
}

.how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape {
    height: 170px;
    /* border-bottom: 1px dashed #ffffff;
    border-left: 1px dashed #ffffff;
    border-radius: 30px 0 0 30px; */
}

.how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card .circle-shape {
    left: auto;
    right: -10px;
}

.how-we-do-right-content .how-we-do-items:last-child .how-we-do-card .line-shape {
    display: none;
}

@media (max-width: 699px) {
    .how-we-do-right-content .how-we-do-items {
        flex-direction: column;
        gap: 30px;
    }

    .how-we-do-right-content .how-we-do-items+.how-we-do-items {
        margin-top: 30px;
    }

    .how-we-do-right-content .how-we-do-items .how-we-do-card .line-shape {
        height: 131px;
        background-image: url('/assets/images/line-shape-3.png');
        background-repeat: round;
        width: 200px;
        right: -30px;
    }

    .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape,
    .how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:last-child .line-shape {
        height: 131px;
    }

    .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:first-child .line-shape {
        left: -30px;
        width: 200px;
    }

    .how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:nth-child(odd) .circle-shape,
    .how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:first-child .circle-shape {
        display: block;
        left: auto;
        right: -10px;
    }

    .how-we-do-right-content .how-we-do-items:first-child .how-we-do-card:nth-child(even) .line-shape {
        right: auto;
        left: -30px;
        transform: rotate(180deg);
    }

    .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:nth-child(odd) .circle-shape {
        right: auto;
        left: -10px;
    }

    .how-we-do-right-content .how-we-do-items:nth-child(2) .how-we-do-card:nth-child(even) .line-shape {
        left: auto;
        right: -30px;
    }

    .feature2-area .feature2-content .section-title br,
    .how-we-do-right-content .how-we-do-items:last-child .how-we-do-card .circle-shape {
        display: none;
    }

    .service3-card {
        flex-direction: column;
    }

    .feature2-area .feature2-img-box,
    .service3-card img {
        max-width: 100%;
    }

    .news2-lists,
    .contact2-infos,
    .feature2-area .feature2-content-body,
    .service2-items {
        grid-template-columns: 1fr;
    }

    .contact2-info-box.contact2-experience,
    .contact2-info-box.contact2-visit-our-office {
        padding-left: 0;
        border-left: none;
    }

    .contact2-body {
        padding: 60px 20px;
    }

    .case-studio-area .case-studio .case-studio-tab-content .case-studio-body .left {
        flex-direction: column;
    }
}


/* Client Section */
.client-area {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.client-area .clients {
    gap: 30px;
    padding-right: 20px;
    margin-right: 20px;
}

.client-area .clients .client-logo {
    min-width: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.client-area .clients .client-logo img {
    display: block;
}

.client-area-2 {
    padding-top: 0;
    padding-bottom: 220px;
}

.client-area-2 .clients {
    overflow: hidden;
    gap: 0;
    box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
    padding: 54px 0;
    border-radius: 10px;
}

.client-area-2 .clients .client-logo {
    height: auto;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    min-width: 210px;
    padding: 0;
}

.client-area-2 .clients .client-logo::before {
    content: '';
    width: 2px;
    height: 34px;
    background: var(--gray);
    border-radius: 10px;
    position: absolute;
    right: 0;
}

.client-area-2 p {
    text-align: center;
    font-size: 25px;
    color: rgb(28 28 28 / 80%);
    border-top: 1px solid var(--gray);
    padding-top: 115px;
    margin-bottom: 60px;
}

/* .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
} */

/* Common base class */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.5s ease-out;
    will-change: opacity, transform;
}

/* Fade In */
.animate-fade-in.visible {
    opacity: 1;
}

/* Slide Up */
.animate-slide-up {
    transform: translateY(30px);
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Down */
.animate-slide-down {
    transform: translateY(-30px);
}

.animate-slide-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Left */
.animate-slide-left {
    transform: translateX(30px);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Right */
.animate-slide-right {
    transform: translateX(-30px);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In */
.animate-zoom-in {
    transform: scale(0.8);
}

.animate-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}


