:root {
    --mainColor: #7f1ec3;
    --secondColor: #784cd5;
    --thirdColor: #3c25a7;
    --whiteColor: #fff;
    --light-bg: #f2f4ff;

}

a {
    text-decoration: none;
}

.bg_light_s {
    background: var(--light-bg) !important;
}

body {
    color: #212529;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    outline: 0;
    overflow-x: hidden;
}

.font-weight-600 {
    font-weight: 600;
}

/* common */

.sub_title {
    font-size: 36px;
    font-weight: 600;
}

.small_title {
    color: var(--thirdColor);
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    display: inline-block;
    font-weight: 700;
}

/* banner_area */
.gradient-overlay {
    position: relative;
    width: 100%;
}

.gradient-overlay:before {
    position: absolute;
    content: '';
    background-image: linear-gradient(to left, rgb(52 21 151), rgba(74, 84, 232, 0.88), rgba(91, 66, 219, 0.85), rgba(104, 44, 203, 0.88), rgba(114, 2, 187, 0.90));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape-bottom img.bottom-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 0;
    width: 100%;
    margin: auto;
}

.shape-right img.bottom-shape {
    position: absolute;
    right: -142px;
    top: 0;
    z-index: 0;
    margin-left: auto;
    transform: rotate(297deg);
}

.banner_area {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner_thumb {
    position: relative;
}

.banner_content {
    position: relative;
    color: var(--whiteColor);
}

.banner_title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}

.image-column img {
    position: relative;
    width: auto;
    animation-name: float_up_down;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: 2;
}

@keyframes float_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

/* Services start */

.ftr_wrp img {
    width: 100%;
}

.service_img {
    position: absolute;
    left: 18px;
    top: 10px;
    color: var(--whiteColor);
    text-align: center;
    width: 85px;
    height: 85px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.box_wrap {
    height: 95%;
}

.box_wrap .ftr_wrp {
    overflow: hidden;
    padding: 110px 20px 30px 20px;
    z-index: 1;
    margin-bottom: 30px;
    min-height: 290px;
    height: 100%;
    position: relative;
    display: block;
    background: var(--whiteColor);
    border-radius: 20px;
    box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.3);
    transition: all 500ms ease;
    text-align: left;
}

.box_wrap:hover .ftr_wrp:before {
    opacity: 1;
    transform: translate(0%, 0%);
    transition: all 0.9s linear;
}

.box_wrap .ftr_wrp:before {
    content: '';
    width: 493px;
    height: 493px;
    background: #6046b1;
    border-radius: 50%;
    position: absolute;
    top: -330px;
    left: -60px;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.box_wrap:hover .ftr_wrp .service_img {
    color: var(--thirdColor);
    background: var(--whiteColor);
}


.box_wrap .ftr_wrp h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}




.box_wrap:hover .ftr_wrp,
.box_wrap:hover .ftr_wrp h4 {
    color: var(--whiteColor);
}

.box_wrap .ftr_wrp .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--thirdColor);
    z-index: -3;
    opacity: 0;
    transition: all 0.3s linear;
}

.box_wrap .ftr_wrp .hover-content:before {
    content: '';
    width: 493px;
    height: 493px;
    background: #573cad;
    border-radius: 50%;
    position: absolute;
    top: -260px;
    left: -60px;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.box_wrap .ftr_wrp .hover-content:after {
    content: '';
    width: 602px;
    height: 602px;
    background: #4e32a9;
    border-radius: 50%;
    position: absolute;
    top: -295px;
    left: -110px;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.box_wrap:hover .hover-content {
    opacity: 1;
}

.box_wrap:hover .hover-content:before {
    opacity: 1;
    transform: translate(0%, 0%);
    transition: all 0.9s linear;
}

.box_wrap:hover .hover-content:after {
    opacity: 1;
    transform: translate(0%, 0%);
    transition: all 1.3s linear;
}



/* Services end */


/* mobile experience start */
.mobile_xp {
    background: var(--light-bg);
}

/* mobile experience end */


/* why choose us start */

.img-wrap {
    position: relative;
    line-height: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 0px;
    right: 0;
    top: 0;
    display: block;
    margin: 0 0 15px;
    transition: all 0.6s ease-in-out;
    z-index: 10;
    background: var(--thirdColor);
}

.box-card.type_two .img-wrap img {
    width: 36px;
    margin: auto;
    height: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    position: absolute;
    filter: invert(1);
}

.content .c_title {
    font-weight: 600;
}

.box-card .content {
    z-index: 9;
    position: relative;
}

.box-card:hover .content,
.box-card:hover .c_title {
    color: var(--whiteColor);
}

.box-card:hover .img-wrap {
    background: var(--whiteColor);
}

.box-card:hover .img-wrap img {
    filter: none;
}

.box-card {
    position: relative;
    background: var(--whiteColor);
    margin-bottom: 30px;
    transition: all 0.6s ease-in-out;
    height: 94%;
    border-radius: 0.5rem;
    padding: 20px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.desc {
    margin: 0;
}

.why_choose .box-card::before {
    content: "";
    border-radius: inherit;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: auto;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
    background-color: var(--thirdColor);
    z-index: 0;
    transition: transform 0.5s ease 0s;
}

.why_choose .box-card::before {
    top: 0;
    left: auto;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.why_choose .box-card:hover::before {
    left: 0;
    right: auto;
    transform: scaleX(1);
    transform-origin: left;
}

/* wy choose us end */


/* portfolio  start*/

h3.download_app {
	font-size: 1.3rem;
	font-weight: 600;
}

.swiper-slide {
    padding: 70px 0 95px;
    color: var(--whiteColor);
    height: 100%;
}

.muzlim {
    background: #ea2e68;
}

.mint-jwelles {
    background: #c78f24;
}

.horse-selling {
    background: #15233b;
}

.seikh-property {
    background: #537edd;
}

.travel-booking {
    background: #465591;
}

.exp_img {
    height: 500px;
}

.exp_img img {
    object-fit: contain;
    height: 100%;
}

.exp_img img {
    width: 100%;
    max-width: 450px;
}

.counter_app {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 16px;
}

.portfolio_wrap .app_btns {
    margin: 30px 0;
}

.portfolio_wrap .swiper-pagination-bullet {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    margin-top: -16px !important;
    border-radius: 50%;
    border: 2px solid var(--whiteColor);
    cursor: pointer;
    background: none;
    position: relative;
}

.portfolio_wrap .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--whiteColor);
    border-radius: 50%;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}

.portfolio_wrap .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

/* portfolio  end*/

/* industries start */


.work-card-set [class*='col-'] {
    margin: 0 0 24px;
}

.industries-wrap .services-card {
    background-color: var(--whiteColor);
    position: relative;
    z-index: 1;
    min-height: 180px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
    display: block;
    overflow: hidden;
}

.industries-wrap .services-card img {
    transform: scale(1);
    transition: transform 1s cubic-bezier(.2, .96, .34, 1);
    max-height: 155px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.industries-wrap .services-card:hover img {
    transform: scale(1.1);
}

.industries-wrap .services-card h6 {
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px;
    text-align: center;
    margin: 0;
    color: var(--thirdColor);
    font-size: 18px;
}

/* industries end */


/* counter section css start */
.counter {
    padding: 100px 0px;
    background: #f2f4ff;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.rating h4 {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.reviews i {
    color: rgb(252, 159, 28);
    font-size: 14px;
}

.rating h6 {
    font-weight: 700;
    font-size: 45px;
    text-align: center;
    margin-bottom: 0px;
}

.counter_inr {
    flex-grow: 1;
    margin-right: 15px;
    margin-bottom: 15px;
}

.counter_main {
    display: flex;
    align-items: center;
}

.count_wrp span {
    padding-left: 25px;
}

.count_wrp h6 {
    font-size: 40px;
    color: #000;
    margin-bottom: 0px;
    border-left: 3px solid #d9d9d9;
    padding-left: 25px;
    font-weight: 600;
}

@media screen and (max-width: 1440px) {

    .counter_main {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .counter_inr {
        margin-right: 15px;
    }

    .count_wrp h1 {
        border-left: 0
    }
}

@media screen and (max-width: 991px) {


    .counter_main {
        display: flex;
        align-items: center;
    }

    .counter_inr {
        width: 30%;
        margin-right: 0;
        flex-grow: inherit;
    }

    .count_wrp h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {

    .counter_inr {
        width: 30%;
        margin-right: 0;
    }

    .counter {
        padding: 50px 0px;
        margin-top: 45px;
    }

    .count_wrp h6 {
        font-size: 30px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 529px) {
    .count_wrp {
        text-align: center;
    }

    .count_wrp span {
        padding-left: 0;
    }

    .counter_inr {
        width: 47%;
    }

}

@media screen and (max-width: 425px) {

    .counter_inr {
        width: 65%;
        margin-right: 0;
    }

    .counter_main {
        gap: 30px;
    }
}


/* expertise start */

.rounded-box {
    border-radius: 10px;
    background: var(--whiteColor);
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.rounded-box h3 {
    margin-bottom: 25px;
}

.rounded-box .col img {
    height: 60px;
    margin-bottom: 14px;
}

.expertise-name {
    font-weight: 600;
}

/* expertise end */



/* process start */
.process {
    background: var(--light-bg);
}

.img_box {
    width: 80px;
    height: 80px;
    overflow: hidden;
    padding: 10px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.p_box {
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: var(--whiteColor);
    height: 95%;
}

.p_box h5 {
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 12px;
}

.img_box img {
    width: 100%;
    object-fit: contain;
}

.p_box:hover {
    background: var(--thirdColor);
    color: var(--whiteColor);
    transition: 300ms all ease;
}

.p_box:hover h5 {
    color: var(--whiteColor);
}

.p_box:hover .img_box {
    background: var(--whiteColor);
}

.p_box:hover .img_box img {
    background: var(--whiteColor);
    filter: inherit;
}

/* process end */

/* happy client section start */

.client-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(189px, 1fr));
    justify-content: space-between;
    grid-gap: 32px;
    justify-items: center;
}

.client-wrap li .single-integration {
    display: flex;
    margin: auto;
    justify-content: center;
    background: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 82px;
    align-items: center;
    border: 1px solid #e8e8e8;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* happy client section end */

/* CTA start */
.cta_cont {
    position: relative;
    color: var(--whiteColor);
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.cta_wrap .sub_title {
    color: var(--whiteColor);
}

/* CTA end */

/* blog start */
.blog-section .read-more-link {
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
    border-radius: 35px;
}

.blog-section .read-more-link:hover {
    background-color: var(--mainColor);
}

.post-date {
    background: #f2f4ff;
}

/* blog end */

/* faq start */

.faq .accordion-button:not(.collapsed) {
    color: var(--whiteColor);
    background: var(--thirdColor);
    box-shadow: none;
    border-radius: 20px;
}

.faq .accordion-item {
    margin: 10px 0px;
    border: 1px solid var(--light-bg);
    border-radius: 8px !important;
}

.faq .accordion-button {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    color: #303142;
    padding: 10px 20px;
    line-height: 33px;
    cursor: pointer;
    transition: 300ms all ease;
    border-radius: 8px !important;
}

.faq .accordion-button:not(.collapsed)::after {

    filter: brightness(100);
}

.faq .accordion {
    margin-top: 60px;
}

.faq .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq .accordion-body {
    padding: 20px 25px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    color: #636363;
}

.faq .accordion-body p {
    margin-bottom: 0;
}

.faq .accordion-body p strong {
    color: #000;
}

.faq .accordion-body ul li {
    margin-bottom: 15px;
}

.faq .accordion-body ul li:last-child {
    margin: 0;
}

/* faq end */


/* Responsive page */
@media (max-width:1399px) {
    .industries-wrap .services-card img {
        max-height: 132px;
    }
}

@media screen and (max-width: 1199px) {
    .banner_title {
        font-size: 40px;
    }

    .small_title {
        font-size: 17px;
    }

    .sub_title {
        font-size: 30px;
    }

    .box_wrap .ftr_wrp h4 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .box_wrap .ftr_wrp {
        padding: 105px 20px 30px 20px;
    }

    .content .c_title {
        font-size: 19px;
    }

    .invest-img img {
        width: 100%;
    }

    .p_box h5 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    h3.download_app {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 991px) {
    .counter_app h3 {
        font-size: 22px;
    }

    h3.download_app {
        font-size: 1rem;
    }

    .scroll-box-content {
        padding-left: 45px;
    }

    .banner_title {
        font-size: 35px;
    }

    .image-column img {
        width: 100%;
    }

    .portfolio .app_btns {
        margin: 20px 0;
    }

    .portfolio .download_app {
        text-align: center;
    }

    .exp_img img {
        margin: 0 auto;
        text-align: center;
    }

    .portfolio .app_btns {
        justify-content: center;
    }

    .portfolio .counter_app {
        justify-content: center;
    }

    .portfolio .download_app {
        margin-top: 30px;
    }

    .industries-wrap .services-card {
        min-height: 160px;

    }

    .industries-wrap .services-card img {
        max-height: 110px;
    }

    .faq .accordion {
        margin-top: 40px;
    }

    .p_box {
        margin-bottom: 20px;
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .counter_app h3 {
        font-size: 20px;
    }

    .client-wrap {
        grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
    }

    .portfolio_wrap .app_btns {
        margin: 15px 0;
        flex-wrap: wrap;
    }

    .image-column .image-two {
        left: 0;
    }

    .shape-bottom {
        display: none;
    }

    .scroll-box-content {
        margin-top: 40px;
    }
    
    body {
        font-size: 14px;
    }

    .exp_img {
        height: 300px;
    }

    .banner_area {
        height: 100%;
        margin-top: 60px;
    }

    .image-column img {
        width: auto;
        height: 300px;
    }

    .shape-right img.bottom-shape {
        right: -322px;
        top: 273px;
    }

    .banner_title {
        font-size: 28px;
    }

    .small_title {
        font-size: 16px;
    }

    .sub_title {
        font-size: 22px;
    }

    .box_wrap .ftr_wrp h4 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .box_wrap .ftr_wrp {
        min-height: 220px;
    }

    .content .c_title {
        font-size: 18px;
    }

    .p_box h5 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .btn-theme {
        font-size: 15px;
        padding: 0 24px;
    }

    .faq .accordion {
        margin-top: 30px;
    }

    .box_wrap .ftr_wrp {
        padding: 90px 15px 15px 15px;
    }

    .service_img {
        left: 15px;
        width: 70px;
        height: 70px;
        padding: 10px;
    }

    .box-card {
        padding: 15px;
    }

    .img-wrap {
        line-height: 60px;
        width: 60px;
        height: 60px;
        margin: 0 0 10px;
        z-index: 10;
    }

    .p_box {
        margin-bottom: 15px;
        padding: 15px;
    }

    .img_box {
        width: 70px;
        height: 70px;
        padding: 10px;
        margin: 0px 0 15px;
    }

    .p_box h5 {
        font-size: 18px;
    }
}