﻿.home-slider .carousel-caption {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    opacity: 0;
    text-align: left;
    margin: 160px 0 60px;
}

    .home-slider .carousel-caption h1 {
        font-size: 4rem;
        line-height: 5rem;
        margin: 0 0 25px;
        font-weight: 700;
        color: #1d4b7f;
    }

        .home-slider .carousel-caption h1 i {
            font-style: normal;
            text-transform: none;
            color: #fd4f51;
            font-weight: 800;
        }

    .home-slider .carousel-caption h2 {
        font-size: 2.1rem;
        line-height: 3.2rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .home-slider .carousel-caption p {
        line-height: 3rem;
    }

    .home-slider .carousel-caption .home-cta {
        margin: 30px 0 0;
    }

        .home-slider .carousel-caption .home-cta a {
            background: -webkit-gradient(linear, left top, right top, from(#fd4f51), to(#1d4b7f));
            background: linear-gradient(90deg, #fd4f51, #1d4b7f);
            -webkit-animation: pulseScale 2.5s infinite ease-in-out;
            animation: pulseScale 2.5s infinite ease-in-out;
            /* Add this line */
            border: none;
        }

            .home-slider .carousel-caption .home-cta a:hover {
                -webkit-animation-play-state: paused;
                animation-play-state: paused;
                /* Optional: pause animation on hover */
                background: -webkit-gradient(linear, left top, right top, from(#1d4b7f), to(#fd4f51));
                background: linear-gradient(90deg, #1d4b7f, #fd4f51);
                color: #fff;
            }

.home-slider .carousel-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: unset;
    display: table;
    -webkit-animation: animatedBackground 20s linear infinite;
    animation: animatedBackground 20s linear infinite;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    position: relative;
    border-radius: 0px 0px 80px 80px;
    border-bottom: 5px solid #1d4b7f;
}

    .home-slider .carousel-item .mobile-banner {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 0;
    }

    .home-slider .carousel-item.active .carousel-caption {
        opacity: 1;
    }

@-webkit-keyframes pulseScale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
        /* Scales up slightly */
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulseScale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
        /* Scales up slightly */
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.banner-badges-dock {
    padding: 10px;
}

    .banner-badges-dock .banner-badges-dock-head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        margin: 0 0 10px 8px;
    }

        .banner-badges-dock .banner-badges-dock-head .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fd4f51;
            -webkit-box-shadow: 0 0 0 6px rgba(253, 79, 81, 0.14);
            box-shadow: 0 0 0 6px rgba(253, 79, 81, 0.14);
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

        .banner-badges-dock .banner-badges-dock-head p {
            margin: 0;
            font-size: 1.45rem;
            line-height: 2rem;
            color: #1d4b7f;
        }

    .banner-badges-dock .banner-single-badge img {
        width: 130px;
    }

@media (max-width: 767px) {
    .banner-badges-dock .banner-single-badge img {
        width: 100px;
    }
}

@media (max-width: 767px) {
    .banner-badges-dock {
        padding: 0;
    }
}

/******************/
.stars-item i {
    color: #FFC000;
}

.v-slider-container {
    --v-bg-primary: #ffffff;
    --v-border-inactive: #e0e0e0;
    position: absolute;
    right: -130px;
    top: 0;
    z-index: 9;
}

    .v-slider-container .v-slider-stage {
        position: relative;
        height: 380px;
        width: 220px;
        -webkit-perspective: 800px;
        perspective: 800px;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

        .v-slider-container .v-slider-stage:hover .v-slider-item {
            -webkit-animation-play-state: paused;
            animation-play-state: paused;
        }

    .v-slider-container .v-slider-item {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 200px;
        height: 100px;
        margin-left: -100px;
        margin-top: -50px;
        border-radius: 14px;
        border: 1.5px solid var(--v-border-inactive);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px;
        padding: 0 16px;
        background: var(--v-bg-primary);
        -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        cursor: default;
        -webkit-animation: v-carousel-spin 18s infinite cubic-bezier(0.4, 0, 0.2, 1);
        animation: v-carousel-spin 18s infinite cubic-bezier(0.4, 0, 0.2, 1);
    }

        .v-slider-container .v-slider-item:nth-child(1) {
            --theme-bg: #E8F0FE;
            --theme-border: #1A73E8;
            -webkit-animation-delay: calc(18s / 6 * 0 * -1);
            animation-delay: calc(18s / 6 * 0 * -1);
        }

        .v-slider-container .v-slider-item:nth-child(2) {
            --theme-bg: #FCE8E6;
            --theme-border: #D93025;
            -webkit-animation-delay: calc(18s / 6 * 1 * -1);
            animation-delay: calc(18s / 6 * 1 * -1);
        }

        .v-slider-container .v-slider-item:nth-child(3) {
            --theme-bg: #E6F4EA;
            --theme-border: #1E8E3E;
            -webkit-animation-delay: calc(18s / 6 * 2 * -1);
            animation-delay: calc(18s / 6 * 2 * -1);
        }

        .v-slider-container .v-slider-item:nth-child(4) {
            --theme-bg: #F3E8FD;
            --theme-border: #8E24AA;
            -webkit-animation-delay: calc(18s / 6 * 3 * -1);
            animation-delay: calc(18s / 6 * 3 * -1);
        }

        .v-slider-container .v-slider-item:nth-child(5) {
            --theme-bg: #E0F2F1;
            --theme-border: #00897B;
            -webkit-animation-delay: calc(18s / 6 * 4 * -1);
            animation-delay: calc(18s / 6 * 4 * -1);
        }

        .v-slider-container .v-slider-item:nth-child(6) {
            --theme-bg: #FFF9E6;
            --theme-border: #FFC000;
            -webkit-animation-delay: calc(18s / 6 * 5 * -1);
            animation-delay: calc(18s / 6 * 5 * -1);
        }

    .v-slider-container .v-item-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background: var(--theme-border);
    }

        .v-slider-container .v-item-icon i {
            font-size: 16px;
            color: #ffffff;
        }

    .v-slider-container .v-item-text {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.35;
        color: #212121;
    }

@-webkit-keyframes v-carousel-spin {
    0%, 5% {
        -webkit-transform: translate3d(0, 0px, 0px) scale(1);
        transform: translate3d(0, 0px, 0px) scale(1);
        opacity: 1;
        z-index: 10;
        background: var(--theme-bg);
        border-color: var(--theme-border);
    }

    16.66%, 21.66% {
        -webkit-transform: translate3d(0, 100px, -100px) scale(0.82);
        transform: translate3d(0, 100px, -100px) scale(0.82);
        opacity: 0.6;
        z-index: 9;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    33.33%, 38.33% {
        -webkit-transform: translate3d(0, 200px, -200px) scale(0.65);
        transform: translate3d(0, 200px, -200px) scale(0.65);
        opacity: 0.3;
        z-index: 8;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    50%, 55% {
        -webkit-transform: translate3d(0, 250px, -300px) scale(0.5);
        transform: translate3d(0, 250px, -300px) scale(0.5);
        opacity: 0;
        z-index: 7;
    }

    55.1% {
        -webkit-transform: translate3d(0, -200px, -200px) scale(0.5);
        transform: translate3d(0, -200px, -200px) scale(0.5);
        opacity: 0;
        z-index: 7;
    }

    66.66%, 71.66% {
        -webkit-transform: translate3d(0, -200px, -200px) scale(0.65);
        transform: translate3d(0, -200px, -200px) scale(0.65);
        opacity: 0.3;
        z-index: 8;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    83.33%, 88.33% {
        -webkit-transform: translate3d(0, -100px, -100px) scale(0.82);
        transform: translate3d(0, -100px, -100px) scale(0.82);
        opacity: 0.6;
        z-index: 9;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    100% {
        -webkit-transform: translate3d(0, 0px, 0px) scale(1);
        transform: translate3d(0, 0px, 0px) scale(1);
        opacity: 1;
        z-index: 10;
        background: var(--theme-bg);
        border-color: var(--theme-border);
    }
}

@keyframes v-carousel-spin {
    0%, 5% {
        -webkit-transform: translate3d(0, 0px, 0px) scale(1);
        transform: translate3d(0, 0px, 0px) scale(1);
        opacity: 1;
        z-index: 10;
        background: var(--theme-bg);
        border-color: var(--theme-border);
    }

    16.66%, 21.66% {
        -webkit-transform: translate3d(0, 100px, -100px) scale(0.82);
        transform: translate3d(0, 100px, -100px) scale(0.82);
        opacity: 0.6;
        z-index: 9;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    33.33%, 38.33% {
        -webkit-transform: translate3d(0, 200px, -200px) scale(0.65);
        transform: translate3d(0, 200px, -200px) scale(0.65);
        opacity: 0.3;
        z-index: 8;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    50%, 55% {
        -webkit-transform: translate3d(0, 250px, -300px) scale(0.5);
        transform: translate3d(0, 250px, -300px) scale(0.5);
        opacity: 0;
        z-index: 7;
    }

    55.1% {
        -webkit-transform: translate3d(0, -200px, -200px) scale(0.5);
        transform: translate3d(0, -200px, -200px) scale(0.5);
        opacity: 0;
        z-index: 7;
    }

    66.66%, 71.66% {
        -webkit-transform: translate3d(0, -200px, -200px) scale(0.65);
        transform: translate3d(0, -200px, -200px) scale(0.65);
        opacity: 0.3;
        z-index: 8;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    83.33%, 88.33% {
        -webkit-transform: translate3d(0, -100px, -100px) scale(0.82);
        transform: translate3d(0, -100px, -100px) scale(0.82);
        opacity: 0.6;
        z-index: 9;
        background: var(--v-bg-primary);
        border-color: var(--v-border-inactive);
    }

    100% {
        -webkit-transform: translate3d(0, 0px, 0px) scale(1);
        transform: translate3d(0, 0px, 0px) scale(1);
        opacity: 1;
        z-index: 10;
        background: var(--theme-bg);
        border-color: var(--theme-border);
    }
}
/***********/
.flex-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.pad-80 {
    padding: 80px 0;
}

.z-index-1 {
    z-index: 1;
}

.pattern {
    position: relative;
}

    .pattern.bottom.bottom-absolute::after {
        position: absolute;
        left: 0;
        bottom: -5px;
    }

    .pattern.top::before,
    .pattern.top::after {
        pointer-events: none;
        display: block;
        position: relative;
        width: 100%;
    }

    .pattern.top::before {
        content: url(/latest_design/images/common-pattern.svg);
        top: -5px;
    }

    .pattern.bottom::after {
        content: url(/latest_design/images/common-pattern.svg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        bottom: -5px;
    }

    .pattern .container {
        position: relative;
        z-index: 9;
    }

.overlay {
    position: relative;
}

    .overlay::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: url(/latest_design/images/pattern.webp);
        pointer-events: none;
    }

    .overlay.container {
        position: relative;
        z-index: 9;
    }

.overlay-w-pattern {
    background: url(/latest_design/images/common-overlay.svg) #1d4b7f;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

.clipimage {
    clip-path: polygon(6.726% 100%, 93.274% 100%, 93.274% 100%, 94.364% 99.896%, 95.399% 99.594%, 96.364% 99.111%, 97.245% 98.464%, 98.029% 97.668%, 98.701% 96.741%, 99.249% 95.698%, 99.657% 94.556%, 99.912% 93.332%, 100% 92.042%, 100% 28.912%, 100% 28.912%, 99.732% 25.399%, 98.988% 22.786%, 97.863% 20.91%, 96.447% 19.608%, 94.835% 18.717%, 93.119% 18.071%, 91.39% 17.508%, 89.742% 16.865%, 88.268% 15.977%, 87.061% 14.682%, 87.061% 14.682%, 86.147% 12.968%, 85.483% 11.096%, 84.946% 9.146%, 84.409% 7.198%, 83.749% 5.331%, 82.839% 3.624%, 81.556% 2.158%, 79.775% 1.012%, 77.369% 0.266%, 74.215% 0%, 6.726% 0%, 6.726% 0%, 5.636% 0.104%, 4.601% 0.406%, 3.636% 0.889%, 2.755% 1.536%, 1.971% 2.332%, 1.299% 3.259%, 0.751% 4.302%, 0.343% 5.444%, 0.088% 6.668%, 0% 7.958%, 0% 92.042%, 0% 92.042%, 0.088% 93.332%, 0.343% 94.556%, 0.751% 95.698%, 1.299% 96.741%, 1.971% 97.668%, 2.755% 98.464%, 3.636% 99.111%, 4.601% 99.594%, 5.636% 99.896%, 6.726% 100%);
}

.box-shadow {
    -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
}

.service-differ-single {
    border-radius: 20px;
}

.auto-height {
    min-height: calc(100% - 30px);
    margin: 30px 0 0;
}

.bottom-wave {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.blue-bg {
    background-color: #1d4b7f;
}

.success-tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 6px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1d4b7f;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: -webkit-gradient(linear, left top, right top, from(#e8f1fb), to(transparent));
    background: linear-gradient(90deg, #e8f1fb 0%, transparent 100%);
    position: relative;
}

    .success-tag::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 5px;
        height: 30px;
        background: -webkit-gradient(linear, left top, left bottom, from(#fd4f51), to(#6b8cff));
        background: linear-gradient(180deg, #fd4f51 0%, #6b8cff 100%);
    }

    .success-tag.whitetag {
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0.9)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
        color: #1d4b7f;
    }

    .success-tag i {
        font-size: 1.2rem;
    }

/*******about********/
/****testimonials*****/
.testimonial-video iframe {
    height: 315px;
}

.testi-content-wrap {
    padding-left: 20px;
}

    .testi-content-wrap .testi-quote-icon {
        font-size: 5rem;
        color: #fd4f51;
        line-height: 1;
        margin-bottom: 20px;
        opacity: 0.8;
    }

    .testi-content-wrap .testi-quote {
        font-size: 2.4rem;
        line-height: 3.8rem;
        font-style: italic;
        font-weight: 700;
        border: none;
        padding: 0;
        margin: 0 0 28px;
        color: #ffffff;
    }

        .testi-content-wrap .testi-quote strong {
            color: #fd4f51;
            font-style: normal;
        }

.testi-stars {
    margin-bottom: 24px;
}

    .testi-stars i {
        color: #ffc107;
        font-size: 2rem;
        margin-right: 4px;
    }

.testi-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
}

    .testi-author .testi-author-line {
        width: 50px;
        height: 3px;
        background: #fd4f51;
        border-radius: 2px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .testi-author strong {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
    }

    .testi-author span {
        font-size: 1.4rem;
        font-weight: 500;
        color: #ffffff;
    }

@media (max-width: 767px) {
    .testi-play-btn {
        width: 58px;
        height: 58px;
        bottom: 20px;
        right: 20px;
    }

    .testi-content-wrap {
        padding-left: 0;
    }

        .testi-content-wrap .testi-quote {
            font-size: 1.9rem;
            line-height: 3rem;
        }
}
/********3-pillers******/
.p-card-1 {
    --c1: #003399;
    --c2: #0088ff;
    --num-color: 0, 51, 153;
    --num-color-alt: 0, 136, 255;
}

.p-card-2 {
    --c1: #ff8e53;
    --c2: #f3854a;
    --num-color: 255, 107, 107;
    --num-color-alt: 255, 142, 83;
}

.p-card-3 {
    --c1: #20c997;
    --c2: #0dbc79;
    --num-color: 32, 201, 151;
    --num-color-alt: 13, 188, 121;
}

.p-card-4 {
    --c1: #8e44ad;
    --c2: #9b59b6;
    --num-color: 142, 68, 173;
    --num-color-alt: 155, 89, 182;
}

.p-card-5 {
    --c1: #e67e22;
    --c2: #f39c12;
    --num-color: 230, 126, 34;
    --num-color-alt: 243, 156, 18;
}

.p-card-6 {
    --c1: #1d4b7f;
    --c2: #2563aa;
    --num-color: 29, 75, 127;
    --num-color-alt: 37, 99, 170;
}

.pillar-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 30px 30px;
    margin: 30px 0 0;
    position: relative;
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(255, 255, 255);
    -webkit-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1;
    border: 1px solid #EAEAEA;
}

    .pillar-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: -webkit-gradient(linear, left top, right top, from(var(--c1, #003399)), to(var(--c2, #00d2ff)));
        background: linear-gradient(90deg, var(--c1, #003399), var(--c2, #00d2ff));
        opacity: 0;
        -webkit-transition: opacity 0.4s ease;
        transition: opacity 0.4s ease;
    }

    .pillar-card .pillar-desc {
        margin: 0;
        font-weight: 500;
    }

    .pillar-card:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-box-shadow: 0 25px 60px rgba(0, 51, 153, 0.08);
        box-shadow: 0 25px 60px rgba(0, 51, 153, 0.08);
    }

        .pillar-card:hover::before {
            opacity: 1;
        }

@media (max-width: 990px) {
    .pillar-card {
        padding: 40px 30px;
    }
}
/*********stories*********/
.client-success-section .pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: background 0.35s ease, border-color 0.35s ease, -webkit-transform 0.35s ease;
    transition: background 0.35s ease, border-color 0.35s ease, -webkit-transform 0.35s ease;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, -webkit-transform 0.35s ease;
    backdrop-filter: blur(6px);
}

    .client-success-section .pillar-card .stat-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 6px;
        margin-bottom: 8px;
    }

    .client-success-section .pillar-card .stat-number {
        font-size: 6rem;
        font-weight: 800;
        color: #06cc99;
        line-height: 1;
        letter-spacing: -2px;
    }

    .client-success-section .pillar-card .stat-pct {
        font-size: 3.2rem;
        font-weight: 700;
        color: #06cc99;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .client-success-section .pillar-card .sub-head {
        font-size: 2.2rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 10px;
        padding: 0 50px 0 0px;
    }

    .client-success-section .pillar-card .stat-specialty {
        font-style: italic;
        margin-bottom: 28px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 6px;
        color: #ffffff;
    }

        .client-success-section .pillar-card .stat-specialty i {
            color: #fd4f51;
        }

    .client-success-section .pillar-card .success-divider {
        width: 50px;
        height: 2px;
        background: -webkit-gradient(linear, left top, right top, from(#fd4f51), to(rgba(253, 79, 81, 0.2)));
        background: linear-gradient(90deg, #fd4f51, rgba(253, 79, 81, 0.2));
        border-radius: 2px;
        margin-bottom: 24px;
    }

    .client-success-section .pillar-card .success-quote-icon {
        font-size: 3.5rem;
        color: #06cc99;
        line-height: 1;
        margin-bottom: 12px;
    }

    .client-success-section .pillar-card .success-quote-text {
        color: #ffffff;
        margin-bottom: 28px;
        font-style: italic;
    }

    .client-success-section .pillar-card:hover {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

.success-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

    .success-stars i {
        color: #ffc107;
        font-size: 1.6rem;
    }

.success-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

    .success-author .success-author-img-fallback {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        background: #fd4f51;
        border: 2px solid rgba(253, 79, 81, 0.4);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        overflow: hidden;
    }

    .success-author .success-author-name {
        font-weight: 700;
        color: #fff;
        margin: 0px;
    }

    .success-author .success-author-org {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.7);
    }

.img-block {
    position: relative;
    z-index: 1;
}

    .img-block img {
        border-radius: 20px 0 20px 0;
    }

    .img-block::before {
        content: "";
        position: absolute;
        bottom: -15px;
        right: -15px;
        width: 80%;
        height: 80%;
        background: #fd4f51;
        z-index: -1;
        border-radius: 0 20px 45px 20px;
        opacity: 0.7;
        pointer-events: none;
    }

    .img-block::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: -20px;
        width: 80%;
        height: 80%;
        background: url(/latest_design/images/dots-shape.webp);
        z-index: -2;
        border-radius: 0 20px 30px 20px;
        opacity: 0.5;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

.section-bg {
    background-image: url(/latest_design/images/pattern.webp);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

    .section-bg.attach-bg {
        background-attachment: fixed;
    }

    .section-bg.cover-bg {
        background-size: cover;
        background-attachment: fixed;
    }

/********* Tabs Sec **********/
.tabs-sec .nav-tabs {
    border-bottom: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px;
}

    .tabs-sec .nav-tabs .nav-link {
        padding: 12px 30px !important;
        margin: 0;
        display: inline-block;
        cursor: pointer;
        border-radius: 2px;
        text-align: center;
        position: relative;
        top: 0;
        text-transform: uppercase;
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
        border-bottom: 1px solid #e1e1e1;
    }

        .tabs-sec .nav-tabs .nav-link i {
            padding: 0 5px 0 0;
        }

        .tabs-sec .nav-tabs .nav-link:hover, .tabs-sec .nav-tabs .nav-link.active {
            background-color: rgba(29, 75, 127, 0.9);
            color: #fff;
            border-radius: 15px 15px 0 0;
            top: 0;
        }

    .tabs-sec .nav-tabs .nav-item {
        margin-left: 0;
    }

@media (max-width: 1700px) {
    .home-slider .carousel-item::after {
        background-position: left top;
        background-size: cover;
    }
}

@media (max-width: 1500px) {
    .home-slider .carousel-caption h1 {
        font-size: 3.5rem;
        line-height: 4.5rem;
    }

    .home-slider .carousel-caption {
        margin: 150px 0 50px;
    }

    .home-slider .carousel-item::before {
        background-position: bottom left;
    }

    .pattern.top {
        margin-top: -65px;
    }

    .client-success-section .pillar-card {
        clip-path: none;
        border-radius: 20px;
        padding: 20px;
    }

        .client-success-section .pillar-card .sub-head {
            padding: 0 0px 0 0px;
        }

    .testimonial-video iframe {
        height: 415px;
    }
}

@media (min-width: 1024px) {
    .tabs-sec .nav-tabs .nav-link {
        padding: 12px 20px !important;
    }
}

@media (min-width: 767px) {
    .tabs-sec {
        background-color: #f6f8ff;
        padding: 30px 0 10px;
        border-radius: 30px;
    }

    .tab-pane.fade.active.show {
        display: block;
    }

    .tabs-collapse .collapse:not(.show) {
        display: block;
    }

    .tabs-collapse .accordion-item {
        border: none;
        background-color: transparent;
    }

        .tabs-collapse .accordion-item .accordion-body {
            padding: 1rem 30px 30px;
        }

        .tabs-collapse .accordion-item .accordion-header {
            display: none;
        }
}

@media (max-width: 1024px) {
    .home-slider .carousel-caption {
        margin: 120px 0px 40px;
    }

    .home-slider .banner-right {
        padding: 0 0 60px;
    }

    .home-slider .carousel-item {
        background-image: var(--bg-image);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        border-radius: 0px 0px 80px 80px;
        overflow: hidden;
    }

        .home-slider .carousel-item::before {
            display: none;
        }

        .home-slider .carousel-item::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #f6f8ff;
            opacity: 0.8;
        }

    .pattern.top {
        margin-top: 0;
    }

    .testimonial-video iframe {
        height: 325px;
        z-index: 9;
    }

    .client-success-section .pillar-card {
        border-radius: 20px;
    }

        .client-success-section .pillar-card .stat-number {
            font-size: 4.5rem;
        }

        .client-success-section .pillar-card .stat-pct {
            font-size: 2.6rem;
        }

    .tabs-sec .nav-item {
        width: auto;
        padding: 0 0px;
        border-bottom: none;
    }
}

@media (max-width: 990px) {
    .testimonial-video iframe {
        height: 525px;
    }
}

@media (max-width: 767px) {
    .home-slider .carousel-item {
        border-radius: 0px 0px 30px 30px;
    }

        .home-slider .carousel-item .mobile-banner {
            background-size: cover;
        }

            .home-slider .carousel-item .mobile-banner::before {
                background: rgba(255, 255, 255, 0.9);
            }

    .home-slider .carousel-caption {
        margin: 100px 0 40px;
    }

        .home-slider .carousel-caption h1 {
            font-size: 3.1rem;
            line-height: 4.2rem;
            margin: 0 0 15px;
        }

        .home-slider .carousel-caption h2 {
            margin-bottom: 15px;
        }

    .pad-80 {
        padding: 40px 0;
    }

    .testimonial-video iframe {
        height: 255px;
    }

    .tabs-sec .accordion-button {
        background-color: #1d4b7f;
        border: 1px solid #1d4b7f;
        font-size: 1.6rem;
        line-height: 2.6rem;
        font-weight: 600;
        text-align: left;
        color: #fff !important;
        padding: 12px 10px;
        text-transform: uppercase;
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .tabs-sec .accordion-button:not(.collapsed) {
            background-color: #fd4f51;
            border: 1px solid #fd4f51;
        }

        .tabs-sec .accordion-button::after {
            right: 0;
            content: "\f063";
            font-family: "Font Awesome 7 Pro";
            display: table;
        }

        .tabs-sec .accordion-button:focus {
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .tabs-sec .accordion-button i {
            padding: 0 5px 0 0;
        }

    .tabs-sec .accordion-item {
        border: none;
        margin: 15px 0 0;
    }

        .tabs-sec .accordion-item .accordion-body {
            background-color: #f6f8ff;
        }

    #myTab {
        display: none;
    }

    .tab-content > .tab-pane {
        display: block;
    }

    .tab-pane {
        padding: 0px;
        border-radius: 0px;
        display: block;
        opacity: 1 !important;
        border: none;
        margin-bottom: 8px;
        padding: 0px;
        border-radius: 0px;
    }
}

.box-design {
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
    min-height: calc(100% - 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

    .box-design .box-icon {
        font-size: 3rem;
        color: #1d4b7f;
        line-height: 4rem;
        z-index: 1;
        position: relative;
        width: 70px;
        height: 70px;
        border-radius: 18px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: rgba(29, 75, 127, 0.05);
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .box-design .box-design-head {
        font-size: 1.6rem;
        line-height: 2.8rem;
        font-weight: 700;
        padding: 5px 0;
        margin-top: 5px;
        opacity: 0.8;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .box-design:hover {
        -webkit-box-shadow: 0 18px 34px rgba(18, 38, 63, 0.14);
        box-shadow: 0 18px 34px rgba(18, 38, 63, 0.14);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 75, 127, 0.5)), to(rgba(29, 75, 127, 0.9)));
        background: linear-gradient(180deg, rgba(29, 75, 127, 0.5) 0%, rgba(29, 75, 127, 0.9) 100%);
    }

        .box-design:hover .box-icon {
            color: #fd4f51;
            -webkit-transform: scale(1.1) rotate(-5deg);
            transform: scale(1.1) rotate(-5deg);
            -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            background-color: #ffffff;
        }

        .box-design:hover .box-design-head {
            color: #fff;
            opacity: 1;
        }

/*****3-pillers*********/
.pillars-art {
    width: 100%;
    height: auto;
    display: block;
}

.pillar-list {
    display: grid;
    gap: 10px;
}

    .pillar-list .pillar-item {
        border-radius: 15px;
        padding: 18px 18px 16px;
        border: 2px solid rgba(29, 75, 127, 0.5);
        background: rgba(29, 75, 127, 0.08);
        -webkit-box-shadow: 0 10px 26px rgba(12, 38, 72, 0.04);
        box-shadow: 0 10px 26px rgba(12, 38, 72, 0.04);
    }

        .pillar-list .pillar-item.pillar-item-v2-2 {
            border-color: rgba(255, 192, 0, 0.5);
            background: rgba(255, 192, 0, 0.08);
        }

        .pillar-list .pillar-item.pillar-item-v2-3 {
            border-color: rgba(6, 204, 153, 0.5);
            background: rgba(6, 204, 153, 0.08);
        }

        .pillar-list .pillar-item .sub-heading {
            margin: 0;
            color: #212121;
            font-size: 18px;
        }

        .pillar-list .pillar-item p {
            margin: 0;
            color: #212121;
        }

.pillar-item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

    .pillar-item-head .pillar-item-num {
        min-width: 38px;
        height: 38px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 700;
        font-size: 14px;
        color: #1d3654;
        background: #ffffff;
    }

.gp-text-vertical {
    text-anchor: middle;
    dominant-baseline: middle;
}

@media (max-width: 1024px) {
    .pillar-list {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .pillars-art-wrap {
        padding: 12px;
        border-radius: 16px;
    }

    .pillar-item {
        border-radius: 14px;
        padding: 14px;
    }

        .pillar-item h3 {
            font-size: 19px;
        }
}
/***3-pillers-end******/
.practice-stages-timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 0;
}

.stage-track {
    position: absolute;
    left: 50%;
    top: 0px;
    bottom: 0px;
    width: 2px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 75, 127, 0.8)), to(rgba(29, 75, 127, 0.8)));
    background: linear-gradient(180deg, rgba(29, 75, 127, 0.8), rgba(29, 75, 127, 0.8));
    border-radius: 999px;
    pointer-events: none;
}

.stage-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0px 0;
    margin: -20px 0 0;
}

.stage-marker {
    grid-column: 2;
    grid-row: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    justify-self: center;
}

.stage-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--c1, #1d4b7f);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    font-weight: 500;
}

.stage-step:hover .stage-icon-circle {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 14px 32px rgba(var(--num-color, 0, 51, 153), 0.28);
    box-shadow: 0 14px 32px rgba(var(--num-color, 0, 51, 153), 0.28);
}

.stage-step-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}

.stage-step-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--c1, #1d4b7f);
    line-height: 1;
    padding-right: 14px;
    margin-right: 14px;
    border-right: 2px solid var(--c1, #1d4b7f);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.stage-step-label .sub-head {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #212121;
}

.practice-stages-timeline .pillar-card {
    grid-row: 1;
    margin: 0;
    min-height: auto;
    max-width: 100%;
    padding: 22px 26px;
    border-top: 3px solid var(--c1, #fd4f51);
}

    .practice-stages-timeline .pillar-card::before {
        display: none;
    }

    .practice-stages-timeline .pillar-card .pillar-desc {
        font-size: 15px;
        line-height: 1.65;
        margin: 0;
    }

.stage-step:nth-child(odd) .pillar-card {
    grid-column: 1;
    justify-self: end;
}

.stage-step:nth-child(even) .pillar-card {
    grid-column: 3;
    justify-self: start;
}

.stage-step::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: rgba(var(--num-color, 0, 51, 153), 0.2);
}

.stage-step:nth-child(odd)::after {
    left: calc(50% - 66px);
}

.stage-step:nth-child(even)::after {
    left: calc(50% + 22px);
}

@media (max-width: 990px) {
    .practice-stages-timeline {
        gap: 12px;
    }

    .stage-track {
        left: 30px;
        top: 0;
        bottom: 0;
        -webkit-transform: none;
        transform: none;
    }

    .stage-step {
        grid-template-columns: 60px 1fr;
        padding: 0;
        margin: 0 0 20px;
    }

    .stage-marker {
        grid-column: 1;
        grid-row: 1;
        width: 40px;
        align-self: start;
        padding-top: 14px;
    }

    .stage-icon-circle {
        width: 40px;
        height: 40px;
    }

        .stage-icon-circle i {
            font-size: 1.6rem;
        }

    .practice-stages-timeline .pillar-card,
    .stage-step:nth-child(odd) .pillar-card,
    .stage-step:nth-child(even) .pillar-card {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
        padding: 18px 18px;
    }

    .stage-step-num {
        font-size: 2.2rem;
    }

    .stage-step::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .stage-step-label {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 10px;
    }
}
/*****************/
.strategy-box-list {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

    .strategy-box-list .strategy-box {
        grid-column: span 4;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 16px;
        padding: 20px 20px;
        border: 1px solid rgba(29, 75, 127, 0.14);
        border-radius: 20px;
        background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8fbff));
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        -webkit-transition: border-color 0.28s ease, -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
        transition: border-color 0.28s ease, -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
        overflow: hidden;
    }

        .strategy-box-list .strategy-box .strategy-icon {
            width: 55px;
            height: 55px;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            border-radius: 16px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(29, 75, 127, 0.1), rgba(76, 132, 214, 0.18));
            -webkit-box-shadow: inset 0 0 0 1px rgba(29, 75, 127, 0.08);
            box-shadow: inset 0 0 0 1px rgba(29, 75, 127, 0.08);
        }

            .strategy-box-list .strategy-box .strategy-icon i {
                font-size: 20px;
                color: #1d4b7f;
            }

        .strategy-box-list .strategy-box .strategy-label {
            display: block;
            margin: 0;
            font-size: 15px;
            line-height: 1.55;
            font-weight: 600;
            color: #212121;
        }

        .strategy-box-list .strategy-box:hover {
            -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
            border-color: rgba(29, 75, 127, 0.24);
            -webkit-box-shadow: 0 18px 36px rgba(16, 32, 55, 0.09), 0 6px 14px rgba(16, 32, 55, 0.06);
            box-shadow: 0 18px 36px rgba(16, 32, 55, 0.09), 0 6px 14px rgba(16, 32, 55, 0.06);
        }

.highlights-grid .strategy-box .strategy-icon {
    background: linear-gradient(135deg, rgba(29, 75, 127, 0.9) 0%, rgba(29, 75, 127, 0.5) 100%);
    color: white;
    font-size: 28px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .highlights-grid .strategy-box .strategy-icon i {
        color: #ffffff;
    }

.highlights-grid .strategy-box .strategy-label {
    font-size: 2rem;
    font-weight: 700;
    color: #1d4b7f;
}

@media (max-width: 1200px) {
    .strategy-box-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .strategy-box-list .strategy-box {
            grid-column: span 1;
        }
}

@media (max-width: 767px) {
    .strategy-box-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

        .strategy-box-list .strategy-box {
            min-height: auto;
            padding: 18px 16px 16px;
            gap: 12px;
        }

            .strategy-box-list .strategy-box .strategy-icon {
                width: 48px;
                height: 48px;
                border-radius: 14px;
            }

            .strategy-box-list .strategy-box .strategy-label {
                max-width: none;
                font-size: 1.4rem;
                line-height: 1.45;
            }
}
/**************/
/******badge*****/
.rep-testimonial-slider-single {
    background-color: transparent !important;
    padding: 40px 30px 15px !important;
    border-radius: 20px;
    border: 0 !important;
    position: relative;
}

    .rep-testimonial-slider-single::before {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        font-family: "Font Awesome 7 Pro";
        content: "\f10d";
        border-radius: 50%;
        padding: 17px 16px;
        z-index: 2;
        color: #1d4b7f;
        background-color: #fff;
        height: 50px;
        width: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 2.5rem;
        align-items: center;
        font-weight: 600;
    }

    .rep-testimonial-slider-single::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
        clip-path: polygon(6.726% 100%, 93.274% 100%, 93.274% 100%, 94.364% 99.896%, 95.399% 99.594%, 96.364% 99.111%, 97.245% 98.464%, 98.029% 97.668%, 98.701% 96.741%, 99.249% 95.698%, 99.657% 94.556%, 99.912% 93.332%, 100% 92.042%, 100% 28.912%, 100% 28.912%, 99.732% 25.399%, 98.988% 22.786%, 97.863% 20.91%, 96.447% 19.608%, 94.835% 18.717%, 93.119% 18.071%, 91.39% 17.508%, 89.742% 16.865%, 88.268% 15.977%, 87.061% 14.682%, 87.061% 14.682%, 86.147% 12.968%, 85.483% 11.096%, 84.946% 9.146%, 84.409% 7.198%, 83.749% 5.331%, 82.839% 3.624%, 81.556% 2.158%, 79.775% 1.012%, 77.369% 0.266%, 74.215% 0%, 6.726% 0%, 6.726% 0%, 5.636% 0.104%, 4.601% 0.406%, 3.636% 0.889%, 2.755% 1.536%, 1.971% 2.332%, 1.299% 3.259%, 0.751% 4.302%, 0.343% 5.444%, 0.088% 6.668%, 0% 7.958%, 0% 92.042%, 0% 92.042%, 0.088% 93.332%, 0.343% 94.556%, 0.751% 95.698%, 1.299% 96.741%, 1.971% 97.668%, 2.755% 98.464%, 3.636% 99.111%, 4.601% 99.594%, 5.636% 99.896%, 6.726% 100%);
        z-index: 2;
        background-color: #fff;
        z-index: -1;
        border-radius: 20px;
    }

.tns-controls .tns-prev,
.tns-controls .tns-next {
    background-color: #fff !important;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0.5;
    margin: 0 2px;
}

    .tns-controls .tns-prev:hover,
    .tns-controls .tns-next:hover {
        opacity: 1;
    }

.tns-controls {
    display: none !important;
}

.rep-testimonial-slider-main {
    margin: 0 !important;
}

.rep-testimonial-stars {
    font-size: 0 !important;
    margin: 0 0 10px;
}

.rep-testimonial-txt {
    position: relative;
    z-index: 9;
    min-height: 180px;
}

.rep-testimonial-footer strong {
    color: #1d4b7f !important;
}

.rep-testimonial-head {
    display: none !important;
}

.rep-testimonial-txt p {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 1.6rem !important;
    line-height: 2.8rem !important;
    color: #000 !important;
}

.rep-testimonial-footer p {
    font-size: 1.8rem !important;
    font-family: "Noto Sans", sans-serif !important;
}

    .rep-testimonial-footer p strong:last-child {
        color: #1d4b7f !important;
    }

.rep-container {
    padding: 0 !important;
}

.tns-controls {
    text-align: center;
    margin: 10px 0 0;
}

.tns-nav {
    margin-top: 20px !important;
}

.tns-outer {
    margin-bottom: 15px !important;
}

/****repugen-badge-end*****/
/******************/
.clients-marquee-section {
    overflow: hidden;
}

.marquee-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    width: 100%;
    mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.marquee-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.scroll-left {
    -webkit-animation: scroll-marquee 60s linear infinite;
    animation: scroll-marquee 60s linear infinite;
}

.scroll-right {
    animation: scroll-marquee 60s linear infinite reverse;
}

.marquee-row:hover .marquee-track {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes scroll-marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scroll-marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.marquee-item {
    width: 200px;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #f0f4fb;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

    .marquee-item img {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
        transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
        transition: filter 0.3s ease, opacity 0.3s ease;
        transition: filter 0.3s ease, opacity 0.3s ease, -webkit-filter 0.3s ease;
    }

    .marquee-item:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

        .marquee-item:hover img {
            opacity: 1;
        }

@media (max-width: 767px) {
    .marquee-item {
        width: 150px;
        height: 80px;
        padding: 12px 18px;
    }

    .marquee-container {
        gap: 20px;
    }

    .marquee-track {
        gap: 20px;
        padding-right: 20px;
    }
}
/********logo-animations**********/
