:root {
    /* Background colors */
    --primary-bg-color: #010101;

    --bg-color-typ0: #000000;
    --bg-color-typ1: #171717;
    --bg-color-typ2: #191919;
    --bg-color-typ3: #1D1F20;
    --bg-color-typ4: #222628;
    --bg-color-typ5: #88888880;
    --bg-color-typ6: #888888;
    --bg-color-typ7: #404040;
    --bg-color-typ8: #00000099;
    --bg-color-typ9: #888888a6;
    --bg-color-typ10: #222222;
    --bg-color-typ11: #7A7A7A;
    --bg-color-typ12: #141414;

    --purple-bg-color-typ1: #613DC1;

    --orange-bg-color-typ1: #FF6138;

    /* Text colors */
    --primary-txt-color: #FFFFFF;
    --secondary-txt-color: #D2D2D2;

    --gray-txt-color-typ1: #F9F9F9;
    --gray-txt-color-typ2: #BEBEBE;
    --gray-txt-color-typ3: #B7B7B7;
    --gray-txt-color-typ4: #7A7A7A;
    --gray-txt-color-typ5: #696E71;

    --green-txt-color-typ1: #9DD23E;
    --purple-txt-color-typ1: #613DC1;
    --orange-txt-color-typ1: #FF6138;

    /* Border / plain box-shadow colors */
    --gray-border-color-typ1: #666666;
    --gray-border-color-typ2: #323437;
    --gray-border-color-typ3: #7A7A7A;
    --gray-border-color-typ4: #242424;

    --purple-border-color-typ1: #613DC1;
}



body {
    background-color: var(--primary-bg-color);
}

html.light-mode {
    --primary-bg-color: #fff;
}

/* Display */
.desktop-view-block {
    display: block;
}

.ipad-view-block {
    display: none;
}

.mobile-view-block {
    display: none;
}

@media (max-width: 1199px) {

    /* Display */
    .desktop-view-block {
        display: none;
    }

    .ipad-view-block {
        display: block;
    }

    .mobile-view-block {
        display: none;
    }
}

@media (max-width: 767px) {

    /* Display */
    .desktop-view-block {
        display: none;
    }

    .ipad-view-block {
        display: none;
    }

    .mobile-view-block {
        display: block;
    }
}

/* Dark mode */
.dark-mode--block-element {
    display: inline-block;
}

.light-mode--block-element {
    display: none;
}

.dark-mode--inline-element {
    display: inline-block;
}

.light-mode--inline-element {
    display: none;
}

/* Light mode */
.light-mode .dark-mode--block-element {
    display: none;
}

.light-mode .light-mode--block-element {
    display: inline-block;
}

.light-mode .dark-mode--inline-element {
    display: none;
}

.light-mode .light-mode--inline-element {
    display: inline-block;
}



@media (min-width: 1280px) {
    .container {
        max-width: 1260px;
        max-width: 1272px;
    }
}

/* Primary btn */
@property --btnprimaryangle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 96deg;
}

@property --btnprimaryorangeangle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 256deg;
}

.btn--primary {
    width: max-content;
    position: relative;
    display: inline-block;
}

.btn--primary a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: transparent;
    color: var(--primary-txt-color);
    text-decoration: none;
    z-index: 1;
    font-family: Outfit;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    transition: 0.3s;
}

.btn--primary a:focus,
.btn--primary a:focus-visible {
    outline: none;
    box-shadow: none;
}

.btn--primary a span {
    margin-right: 10px;
}

.btn--primary a::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 43px;
    border-radius: 50px;
    background: var(--purple-bg-color-typ1);
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
    z-index: -1;
    transition: 0.3s;
}

.btn--primary a:hover:before {
    width: 100%;
}

.btn--primary a img {
    width: 15px;
}

/* Gradient Txt */
.gradient-color-txt {
    /* background: linear-gradient(90deg, #B294FF 6.49%, #FFF 100%); */
    background: linear-gradient(90deg, #613DC1 0%, #FFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-heading--bpo {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4;
    letter-spacing: -0.96px;
    text-transform: capitalize;
    color: var(--primary-txt-color);
    margin-bottom: 24px;
}

.secondary-heading--bpo {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--green-txt-color-typ1);
    margin-bottom: 12px;
}

.space-preline {
    white-space: pre-line;
}

h1 {
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1.12px;
    text-transform: capitalize;
    color: var(--primary-txt-color)
}

p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: var(--secondary-txt-color);
}


/* Global Hero Section */
.hero-section--globalHeroTyp1 {
    padding: 203px 0px 100px 0px;
    /* min-height: 754px; */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section--globalHeroTyp1 video {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.45;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 100px;
}

@media (max-width:1199px){
	.hero-section--globalHeroTyp1 video {
		padding-top: 50px;
	}
}

.hero-section--globalHeroTyp1 .content--globalHeroTyp1 {
    max-width: 662px;
}

.hero-section--globalHeroTyp1 .content--globalHeroTyp1 *:last-child {
    margin-bottom: 0!important;
}

.hero-section--globalHeroTyp1 h1 {
    color: var(--primary-txt-color);
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1.12px;
    text-transform: capitalize;
    margin-bottom: 12px;
    white-space: pre-line;
}

.hero-section--globalHeroTyp1 h5 {
    color: var(--primary-txt-color);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0px;
}

.hero-section--globalHeroTyp1 p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: var(--secondary-txt-color);
    width: 100%;
    margin-bottom: 36px;
}

.hero-section--globalHeroTyp1 .content--globalHeroTyp1>*:last-child {
    margin-bottom: 0px;
}

.hero-section--globalHeroTyp1 .content--globalHeroTyp1 .main-title-box--globalHeroTyp1 {
    margin-bottom: 24px;
}


/* Industries We Serve  */
.industry-we-serve {
    padding: 100px 0px;
}

.industry-we-serve .content-industryWeServe {
    max-width: 745px;
    margin: auto;
    text-align: center;
    margin-bottom: 68px;
}

.industry-we-serve .content-industryWeServe h3 {
    margin-bottom: 12px;
}

.industry-we-serve .content-industryWeServe h2 {
    margin-bottom: 16px;
}

.industry-we-serve .content-industryWeServe p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 16px;
    line-height: 138%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    white-space: pre-line;
}

.industry-we-serve .d-flex-card-industryWeServe {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 38px;
}

.industry-we-serve .card--industryWeServe {
    position: relative;
    max-width: 386px;
    flex: 1 1 calc((100%/4) - 19px);
    min-height: 194px;
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 14px;
}

.industry-we-serve .card--industryWeServe img {
    border-radius: 14px;
    height: 194px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid transparent;
    background: linear-gradient(105.14deg, #6B6B6B -10.43%, #000000 112.11%) border-box;
}

.industry-we-serve .card--industryWeServe h4 {
    position: relative;
    color: #fff;
}

.industry-we-serve .card--industryWeServe p {
    position: relative;
    opacity: 0;
    margin: 0px;
    color: #fff;
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    max-width: 270px;
}

.industry-we-serve .card--industryWeServe:hover {
    box-shadow: 0px 4px 0px 0px #613DC1;
}

.industry-we-serve .card--industryWeServe:hover p {
    max-height: 100px;
    opacity: 1;
}


/* New industry-we-serve */
.industry-we-serve--typ2 {
    padding: 100px 0px;
    background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/06/BPO_Industries-We-Serve.png);
    background-size: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.d-flex--industryWeServeTyp2 {
    display: flex;
    flex-flow: column wrap;
    gap: 54px 70px;
    height: 1310px;
}

.industry-we-serve--typ2 .content-industryWeServe p {
    margin-bottom: 36px;
}

.d-flex--industryWeServeTyp2 .card--industryWeServeTyp2 {
    width: calc(50% - 36px);
}

.d-flex--industryWeServeTyp2 .card--industryWeServeTyp2:nth-child(4) {
    margin-top: 109px;
}

.industry-we-serve--typ2 .card--industryWeServe {
    position: relative;
    width: 100%;
    min-height: 359px;
    display: flex;
    padding: 48px 48px 40px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 14px;
    transition: padding 0.3s;
}

.industry-we-serve--typ2 .card--industryWeServe:hover {
    padding: 48px;
}

.industry-we-serve--typ2 .card--industryWeServe img {
    border-radius: 14px;
    height: 194px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid transparent;
    background: linear-gradient(105.14deg, #6B6B6B -10.43%, #000000 112.11%) border-box;
}

.industry-we-serve--typ2 .card--industryWeServe .title-cardIndusWeServe {
    position: relative;
    color: var(--primary-txt-color);
    font-family: Inter;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.industry-we-serve--typ2 .card--industryWeServe p {
    position: relative;
    margin: 0px;
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    max-width: 270px;
    color: var(--secondary-txt-color);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;

}

.industry-we-serve--typ2 .card--industryWeServe:hover {
    box-shadow: 0px 4px 0px 0px var(--purple-border-color-typ1);
}

.industry-we-serve--typ2 .card--industryWeServe:hover p {
    max-height: 100px;
    opacity: 1;
}



/* Case Study Slider */
.case-study-and-success-stories {
    padding: 100px 0px;
}

.case-study-and-success-stories .intro-content--casestudy {
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-and-success-stories .intro-content--casestudy p {
    margin-bottom: 36px;
}

.case-study-and-success-stories {
    background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/06/BPO_Case-Studies-Success-Stories-scaled.png);
    background-size: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
}

/* .CaseStudySlider .swiper-slide.slides-caseStudySlide {
    background: linear-gradient(91.85deg, rgba(54, 54, 54, 0.4) 8.69%, #000000 84.02%) border-box;
    border-radius: 23px;
    border: 1.5px solid transparent;
} */

.CaseStudySlider .d-flex-card-body--caseStudySlide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 17px;
    /* background: linear-gradient(290.26deg, #151515 -7.68%, #010101 69.13%); */
    min-height: 431px;
    min-height: 440px;
}

.CaseStudySlider .card--caseStudySlide.d-flex-content--caseStudySlide {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-color-typ1);
    padding: 38px 34px;
}

.CaseStudySlider .card--caseStudySlide {
    border-radius: 14px;
}

.CaseStudySlider .host-img--caseStudySlide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.CaseStudySlider .card--caseStudySlide.card-host-img--caseStudySlide {
    max-width: 585px;
    width: 100%;
    height: 100%;
}

.CaseStudySlider .card--caseStudySlide h4 {
    font-family: Inter;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 10px;
    color: var(--primary-txt-color);
}

.CaseStudySlider .card--caseStudySlide p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: var(--secondary-txt-color);
    margin-bottom: 24px;
    min-height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 40px;
}

.CaseStudySlider .card--caseStudySlide .d-flex--metrics {
    display: flex;
    flex-direction: row;
    column-gap: 22px;
    align-items: stretch;
    padding-top: 24px;
    border-top: 2px solid var(--bg-color-typ9);
    max-width: 525px;
}

.CaseStudySlider .card--caseStudySlide .value--metrics {
    font-family: Inter;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.5;
    letter-spacing: 0%;
    display: block;
    margin-bottom: 2px;
    color: var(--green-txt-color-typ1);
}

.CaseStudySlider .card--caseStudySlide .label--metrics {
    font-family: Outfit;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: var(--secondary-txt-color);
    display: block;
}

.CaseStudySlider .card--caseStudySlide .btn--primary {
    margin-top: 48px;
}

.CaseStudySlider .card--caseStudySlide .partition-line--metrics {
    width: 2px;
    background: var(--bg-color-typ5);
    margin: 10px 0px;
}

.CaseStudySlider .card--caseStudySlide .host-img--caseStudySlide {
    border-radius: 14px;
}

.CaseStudySlider .card--caseStudySlide .d-flex--metrics>div:last-child {
    display: none;
}

.CaseStudySlider .card--caseStudySlide .card--metrics {
    flex: 1;
}

.CaseStudySlider .d-flex-slider-btn--caseStudy {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.CaseStudySlider .swiper-caseStudy-prev {
    margin-right: 20px;
}

/* Tech Stack */
.tech-stack--section {
    padding: 100px 0px;
    background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/07/BPO-4.png) center center/cover no-repeat;
}

.tech-stack--section .content--tech-stack {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 68px;
}

.tech-stack--section .d-flex--tech-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 6px 113px;
    max-width: 1140px;
    margin: auto;
    position: relative;
}

.tech-stack--section .d-flex--tech-stack::before {
    content: '';
    position: absolute;
    background: #222628;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    will-change: transform;
}

.tech-stack--section .d-flex--tech-stack .card--tech-stack {
    position: relative;
}

.card--tech-stack:nth-child(1)::after,
.card--tech-stack:nth-child(2)::after,
.card--tech-stack:nth-child(3)::after {
    content: '';
    position: absolute;
    background: #222628;
    width: 1px;
    height: calc(200% + 6px);
    top: 0;
    left: 100%;
    transform: translate(56px, 0%);
    /* transform: translate(0%, 0%); */
    will-change: transform;
}

.tech-stack--section .card--tech-stack img {
    height: 96px;
    width: 100%;
    aspect-ratio: 200 / 96;
    object-fit: contain;
    padding: 11px 14px;
}

/* Testimonials Slider Typ1 */
.testimonials-section-typ1 .content--testimonialsSectTyp1 p {
    margin-bottom: 48px;
}

.testimonials-section-typ1 {
    padding: 100px 0px;
    text-align: center;
}

.testimonials-section-typ1 .wrapper-swiper--TestimonialsTyp1 {
    position: relative;
    max-width: 1140px;
    margin: auto;
}

.testimonials-section-typ1 .testimonialsTyp1 {
    max-width: 860px;
    margin: auto;
    border-radius: 14px;
}

.testimonials-section-typ1 .swiper-slide.slide--testimonialsTyp1 {
    background: linear-gradient(91.85deg, rgba(54, 54, 54, 0.6) 38.69%, #000000 84.02%) border-box;
    border-radius: 14px;
    border: 2px solid transparent;
}

.testimonials-section-typ1 .d-flex-card-body--testimonialsTyp1 {
    background: linear-gradient(314.85deg, #9DD23E1F 12%, #00000000 88%), #000000;
    background: linear-gradient(314.85deg, rgba(157, 210, 62, 0.0396) 6.63%, rgba(0, 0, 0, 0) 92.29%), #000000;
    border-radius: 13px;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 325px;
}

.testimonials-section-typ1 .header-card--testimonialsTyp1 .qoute-icon--testimonialsTyp1 {
    margin-bottom: 18px;
}

.testimonials-section-typ1 .header-card--testimonialsTyp1 p {
    font-family: Outfit;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 12px;
    color: var(--primary-txt-color);
    min-height: 64px;
}

.testimonials-section-typ1 .footer-card--testimonialsTyp1 .p-name--testimonialsTyp1 {
    font-family: Outfit;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary-txt-color);
    display: block;
    margin-bottom: 1px;
}

.testimonials-section-typ1 .footer-card--testimonialsTyp1 .p-designation--testimonialsTyp1 {
    font-family: Outfit;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary-txt-color);
    display: block;
    margin-bottom: 16px;
}

.testimonials-section-typ1 .footer-card--testimonialsTyp1 .rating-stars--testimonialsTyp1 {
    height: 18px;
}

.testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    justify-content: center;
    margin-top: 48px;
    gap: 20px;
}

.testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 .swiper-button-prev,
.testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 .swiper-button-next {
    height: unset;
    width: unset;
    position: unset;
    margin: unset;
}

.testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 .swiper-button-prev:after,
.testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 .swiper-button-next:after {
    content: unset;
}

/* Banner Let Build Dreams */
.banner--lets-build-dreams {
    padding: 100px 0px;
    /* background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/05/bpo-3-scaled.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
}

.banner--lets-build-dreams .content--banner-lets-build {
    max-width: 607px;
}

.banner--lets-build-dreams h2 {
    white-space: unset;
}

.banner--lets-build-dreams p {
    margin-bottom: 36px;
}

/* What we do */
.what-we-do {
    padding: 100px 0px;
    background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/06/BPO_What-We-Do.png);
    background-size: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.what-we-do .row {
    align-items: center;
}

.what-we-do .content--whatwedo {
    max-width: 503px;
}

.what-we-do h2,
.what-we-do h3 {
    white-space: pre-line;
}

.what-we-do p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0%;
    /* color: var(--secondary-txt-color); */
    margin-bottom: 36px;
}

.what-we-do .d-flex-card--whatwedo {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: stretch;
    max-width: 694px;
    width: 100%;
    margin-left: auto;
}

.what-we-do .card--whatwedo {
    width: calc(50% - 11px);
    background: var(--bg-color-typ3);
    padding: 54px 35px;
    border-radius: 10px;
    height: auto;
    min-height: 348px;
    transition: 0.3s;
}

.what-we-do .card--whatwedo:hover {
    box-shadow: inset 0px 0px 0px 2px var(--gray-border-color-typ2);

}

.what-we-do .card--whatwedo img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    padding: 13px;
    background: var(--bg-color-typ2);
    border-radius: 50%;
    margin-bottom: 10px;
}

.what-we-do .card--whatwedo .title--cardWhatWeDo {
    font-family: Inter;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: var(--primary-txt-color);
    margin-bottom: 12px;
}

.what-we-do .card--whatwedo p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 0px;
    color: var(--secondary-txt-color);
}

/* Solutions Internal Pages */
/* --- Section Shell --- */ 

/* Ribbon */
.ribbon--busiOps {
    background: linear-gradient(90deg, #FF5A24 0%, #613DC1 100%);
    padding: 18px 0px;
    margin-top: 68px;
}

.ribbon--busiOps p {
    color: var(--primary-txt-color);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0px;
    text-align: center;
}

.ribbon--busiOps p strong {
    font-weight: 700;
}

/* Slider - Solution Internal Page */



/* Section 4 Internal Solutions  */
.section4-client-success-internalSolutions {
    padding: 100px 0px;
    background: var(--bg-color-typ1, #171717);
}

.section4-client-success-internalSolutions .content-main--section4InternalSolutions {
    text-align: center;
    margin-bottom: 68px;
}

.section4-client-success-internalSolutions {
    padding: 100px 0px;
    background: var(--bg-color-typ1, #171717);
}

.section4-client-success-internalSolutions .card--section4InternalSolutions .metric-value--section4InternalSolutions {
    font-family: Inter;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
    display: inline-block;
}

.section4-client-success-internalSolutions .divider--section4InternalSolutions {
    background: #353535;
    width: 1px;
    margin: 0px 48px;
}

.section4-client-success-internalSolutions .d-flex>*:last-child {
    display: none;
}

.section4-client-success-internalSolutions .card--section4InternalSolutions {
    flex: 1;
}

/* Global Cards Type 1 */
.global-feature-card-type1 {
    padding: 35px;
    background: var(--bg-color-typ3, #1D1F20);
    width: 100%;
    height: 100%;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: center; */
}

.global-feature-card-type1:hover {
    box-shadow: inset 0px 0px 0px 2px var(--gray-border-color-typ2);
}

.global-feature-card-type1 .icon-img--GlobalFeatsCardTyp1 {
    height: 72px;
    width: 72px;
    object-fit: contain;
    margin-bottom: 12px;
}

.global-feature-card-type1 .title--GlobalFeatsCardTyp1 {
    font-family: Inter;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: var(--primary-txt-color, #fff);
    margin-bottom: 12px;
}

.global-feature-card-type1 .description--GlobalFeatsCardTyp1 {
    font-family: Outfit;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 12px;
    color: var(--secondary-txt-color, #d2d2d2);
}

.global-feature-card-type1>*:last-child {
    margin-bottom: 0px;
}

.section-three--CardGridInterSolutionTyp1 {
    padding: 100px 0px;
}

.section-three--CardGridInterSolutionTyp1 .row.grid-row--CardGridInterSolutionTyp1 {
    row-gap: 25px;
}


.SliderSect3CardGridInternalSolutionTyp1SliderM .swiper-slide {
    height: auto;
}



@media (min-width: 1280px) {
    .what-we-do .row .col-lg-6:nth-child(2) {
        padding-left: 10px;
    }

    .global-feature-card-type1 .title--GlobalFeatsCardTyp1 {
        letter-spacing: -0.756px;
    }
}

@media (max-width: 1024px) {
    .btn--primary a::before {
        width: 100%;
    }

    /* Section 3 - Internal Solutions */
    .wrrapper-Sect3CardGridInternalSolutionTyp1SliderM .swiper-wrapper,
    .wrapper-swiper--sliderInterSolutionTyp1 .swiper-wrapper {
        align-items: stretch;
    }
}


/* Common iPad Range */
@media (min-width: 768px) and (max-width: 1199px) {
    .industry-we-serve-typ2--mobile.mobile-view-block {
        display: block;
    }

    /* Mobile view Industry We Serve */
    .industry-we-serve-typ2--mobile {
        padding: 48px 0px;

    }

    .content-industryWeServe p {
        margin-bottom: 24px;
        font-family: Outfit;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
    }

    .swiper-slide.slide--industryWeServeMobileTyp1 {
        border: 1px solid transparent;
        background: linear-gradient(105.14deg, #6B6B6B -10.43%, #000000 112.11%) border-box;
        border-radius: 14px;
    }

    .card--industryWeServeMobileTyp1 {
        border-radius: 14px;
        background: #1D1F20;
        min-height: 320px;
    }

    .card--industryWeServeMobileTyp1 img {
        border-radius: 13px 13px 0px 0px;
        aspect-ratio: 256/158;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card--industryWeServeMobileTyp1 h3 {
        font-family: Inter;
        font-weight: 500;
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: 0%;
        vertical-align: bottom;
        margin-bottom: 12px;
        padding: 20px 16px 0px;
        color: var(--primary-txt-color);
    }

    .card--industryWeServeMobileTyp1 p {
        font-family: Outfit;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.5;
        margin: 0px;
        padding: 0px 16px 20px;
        min-height: 80px;
        max-width: 380px;
    }

    .d-flex-btn--industryWeServeMobileTyp1 {
        display: flex;
        justify-content: center;
        margin-top: 48px;
        column-gap: 20px;
    }

    /* Tech Stack */
    .tech-stack--section .d-flex--tech-stack {
        gap: 6px 0px;
    }

    .card--tech-stack:nth-child(1)::after,
    .card--tech-stack:nth-child(2)::after,
    .card--tech-stack:nth-child(3)::after {
        left: 100%;
        transform: unset;
    }

}

/* Ipad Landscape*/


@media (min-width: 992px) and (max-width: 1199px) {
    /* Global Style */

    /* Global Hero Section */
    .hero-section--globalHeroTyp1 {
        padding: 140px 0px 80px 0px;
        padding: 160px 0px 100px 0px;
        /* min-height: 700px;
        min-height: unset; */
    }

    .hero-section--globalHeroTyp1 .content--globalHeroTyp1 {
        max-width: 700px;
    }

    /* What we do  */
    .what-we-do {
        /* padding: 80px 0px; */
    }

    .what-we-do .content--whatwedo {
        max-width: unset;
        margin-bottom: 48px;
    }

    .what-we-do .d-flex-card--whatwedo {
        margin: 0px;
        max-width: unset;
    }

    .what-we-do .row>.col-lg-6:nth-child(2) {
        width: 100%;
        margin-top: 48px;
    }

    .what-we-do .card--whatwedo {
        width: calc(33% - 13px);
        padding: 28px;
    }

    /* Industry we serve */
    .industry-we-serve-typ2--mobile.mobile-view-block {
        /* padding: 80px 0px; */
    }

    .industry-we-serve-typ2--mobile.mobile-view-block .content-industryWeServe {
        margin-bottom: 48px;
    }

    /* Case Study Success Stories */
    .case-study-and-success-stories {
        /* padding: 80px 0px; */
    }

    .case-study-and-success-stories .intro-content--casestudy {
        margin-bottom: 48px;
    }

    .CaseStudySlider .d-flex-card-body--caseStudySlide {
        min-height: unset;
    }

    .CaseStudySlider .card--caseStudySlide.d-flex-content--caseStudySlide {
        padding: 28px;
    }

    .CaseStudySlider .card--caseStudySlide h4 {
        font-size: 24px;
    }

    .CaseStudySlider .card--caseStudySlide .value--metrics {
        font-size: 32px;
    }

    .CaseStudySlider .card--caseStudySlide .d-flex--metrics {
        column-gap: 10px;
    }

    .CaseStudySlider .card--caseStudySlide .label--metrics {
        font-size: 12px;
    }

    .CaseStudySlider .card--caseStudySlide .btn--primary {
        margin-top: 24px;
    }

    /* Tech Stack */
    .tech-stack--section {
        /* padding: 80px 0px; */
    }

    .tech-stack--section .content--tech-stack {
        margin-bottom: 48px;
    }

    /* Testimonials  */
    .testimonials-section-typ1 {
        /* padding: 80px 0px; */
    }

    /* Bottom Banner  */
    .banner--lets-build-dreams {
        /* padding: 80px 0px; */
    }


    /* Section 1 - Internal Solutions  */
     



}

@media (max-width: 991px) {
    /* Section - Global Card Slider */

    .wrrapper-GlobalCardSliderTyp1 .swiper-slide.slide--GlobalCardSliderTyp1 {
        border: 1px solid transparent;
        background: linear-gradient(105.14deg, #6B6B6B -10.43%, #000000 112.11%) border-box;
        border-radius: 14px;
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 {
        border-radius: 14px;
        background: var(--bg-color-typ3);
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 img {
        border-radius: 12px 12px 0px 0px;
        aspect-ratio: 256/158;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 h3 {
        font-family: Inter;
        font-weight: 500;
        font-size: 24px;
        line-height: 1.3;
        color: var(--primary-txt-color);
        margin-bottom: 12px;
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 p,
    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 a {
        font-size: 16px;
        line-height: 1.5;
        color: var(--secondary-txt-color);
        margin: 0px;
        margin-bottom: 12px;
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 ul {
        margin: 0px;
        list-style-type: "•  ";
        padding-left: 20px;
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 ol {
        margin: 0px;
        padding-left: 20px;
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 li {
        font-size: 14px;
        line-height: 1.5;
        color: var(--primary-txt-color);
    }

    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 li:not(:last-child) {
        margin-bottom: 8px;
    }

    .wrrapper-GlobalCardSliderTyp1 .d-flex-btn--GlobalCardSliderTyp1 {
        display: grid;
        justify-content: center;
        margin-top: 24px;
        column-gap: 20px;
        grid-template-columns: repeat(2, auto);
    }

    .wrrapper-GlobalCardSliderTyp1 .card-body--GlobalCardSliderTyp1 {
        padding: 20px 16px;
    }

    .wrrapper-GlobalCardSliderTyp1 .card-body--GlobalCardSliderTyp1 li {
        font-family: Outfit;
    }

    .img-card--sliderInterSolutionTyp1 .desktop-center-img--sliderInterSolutionTyp1 {
        display: none;
    }

    .img-card--sliderInterSolutionTyp1 .mobile-center-img--sliderInterSolutionTyp1 {
        display: block;
    }
}

/* Ipad Potrait*/
@media (min-width: 768px) and (max-width: 991px) {

    /* Global Styles  */
    .secondary-heading--bpo {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .main-heading--bpo {
        font-size: 28px;
        font-style: normal;
        line-height: 1.3;
        letter-spacing: -0.56px;
        margin-bottom: 12px;
    }

    h1 {
        font-size: 32px;
        letter-spacing: -0.64px;
        margin-bottom: 12px;
    }

    h2 {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.56px;
        margin-bottom: 12px;
    }

    p {
        font-size: 16px;
    }

    .btn--primary a {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 1.4;
    }

    .btn--primary a img {
        width: 15px;
    }


    /* Global Hero Section */
    .hero-section--globalHeroTyp1 {
        padding: 110px 0px 48px 0px;
        padding: 162px 0px 100px 0px;
        /* min-height: 450px; */
    }

    .hero-section--globalHeroTyp1 h1 {
        font-family: Inter;
        font-weight: 600;
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -0.64px;
        text-transform: capitalize;
        margin-bottom: 12px;
    }

    .hero-section--globalHeroTyp1 h5 {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-section--globalHeroTyp1 p {
        font-family: Outfit;
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-section--globalHeroTyp1 .content--globalHeroTyp1 {
        max-width: 480px;
    }

    .hero-section--globalHeroTyp1 .content--globalHeroTyp1 .main-title-box--globalHeroTyp1 {
        margin-bottom: 12px;
    }

    /* What We Do */
    .what-we-do {
        padding: 48px 0px;
    }

    .what-we-do .content--whatwedo {
        margin-bottom: 48px;
    }

    .what-we-do p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .what-we-do .card--whatwedo .title--cardWhatWeDo {
        font-size: 24px;

    }

    .what-we-do .card--whatwedo {
        padding: 28px;
        min-height: 300px;
    }

    /* Industry We Serve  */
    .content-industryWeServe {
        margin-bottom: 48px;
    }

    /* Case Study & Success Stories */
    .case-study-and-success-stories {
        padding: 48px 0px;
    }

    .case-study-and-success-stories .intro-content--casestudy p {
        margin-bottom: 24px;
    }

    .case-study-and-success-stories .intro-content--casestudy {
        margin-bottom: 48px;
    }

    .CaseStudySlider .d-flex-card-body--caseStudySlide {
        padding: 0px;
        grid-template-columns: 1fr;
        gap: 0px;
        background: var(--bg-color-typ1);
        border-radius: 12px;
    }

    .CaseStudySlider .card--caseStudySlide .host-img--caseStudySlide {
        border-radius: 12px 12px 0px 0px;
        aspect-ratio: 256/179;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .CaseStudySlider .card--caseStudySlide.card-host-img--caseStudySlide {
        max-width: unset;
    }

    .CaseStudySlider .card--caseStudySlide.d-flex-content--caseStudySlide {
        padding: 28px 16px;
        background: unset;
    }

    .CaseStudySlider .card--caseStudySlide h4 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .CaseStudySlider .card--caseStudySlide p {
        font-size: 14px;
        -webkit-line-clamp: 2;
        min-height: unset;
    }

    .CaseStudySlider .card--caseStudySlide .d-flex--metrics {
        max-width: unset;
        padding-top: 24px;
    }

    .CaseStudySlider .card--caseStudySlide .value--metrics {
        font-size: 40px;
        margin-bottom: 2px;
    }

    .CaseStudySlider .card--caseStudySlide .btn--primary {
        margin-top: 28px;
    }

    /* Tech Stack Section  */
    .tech-stack--section {
        padding: 48px 0px;
    }

    .tech-stack--section .content--tech-stack {
        margin-bottom: 48px;
    }

    /* Testimonial Slider */
    .testimonials-section-typ1 {
        padding: 48px 0px;
    }

    /* Bottom Banner Section */
    .banner--lets-build-dreams {
        padding: 48px 0px;
    }

    .banner--lets-build-dreams .content--banner-lets-build {
        max-width: 500px;
    }

    .banner--lets-build-dreams p {
        margin-bottom: 24px;
    }

    /* Section 1 Internal Solution Page  */
    .section-typ1-internalSolutionPg,
    .section-sliderInternalSolutionTyp1,
    .section-3-Mobile--CardGridInterSolutionTyp1,
    .section4-client-success-internalSolutions {
        padding: 48px 0px;
    }



    /* Section 2 Internal Solution Page  */

   

    /* Section 3 - Internal Solutions */
    .section-three--CardGridInterSolutionTyp1 .content--Section3CardGridInternalSolutionTyp1 {
        margin-bottom: 48px;
    }

    /* Section 4 - Internal Solutions */
    .section4-client-success-internalSolutions .content-main--section4InternalSolutions {
        margin-bottom: 48px;
    }

    .section4-client-success-internalSolutions .divider--section4InternalSolutions {
        margin: 0px 14px;
    }

    .section4-client-success-internalSolutions .card--section4InternalSolutions .metric-value--section4InternalSolutions {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .global-feature-card-type1 {
        padding: 28px;
        border-radius: 12px;
        box-shadow: inset 0px 0px 0px 2px var(--gray-border-color-typ2, #323437);
    }

    .global-feature-card-type1 .icon-img--GlobalFeatsCardTyp1 {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .global-feature-card-type1 .title--GlobalFeatsCardTyp1 {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* Mobile */
@media (max-width: 767px) {

    /* Global style  */
    .container {
        padding: 0px 32px;
    }

    .secondary-heading--bpo {
        font-family: Inter;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        margin-bottom: 12px;
        text-align: left;
    }

    .main-heading--bpo {
        font-family: Inter;
        font-weight: 600;
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.56px;
        text-transform: capitalize;
        margin-bottom: 12px;
        text-align: left;
    }

    p {
        font-family: Outfit;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
    }

    .btn--primary a {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 1.4;
    }

    .btn--primary a img {
        width: 15px;
    }

    .d-flex-btn-NaviGlobalSlider1 {
        display: grid;
        grid-template-columns: repeat(2, 40px);
        justify-content: center;
        gap: 20px;
        margin-top: 24px;
    }

    /* Global Hero Section */
    .hero-section--globalHeroTyp1 {
        padding: 108px 0px 48px 0px;
        justify-content: flex-start;
        /* min-height: 650px; */
    }

    .hero-section--globalHeroTyp1 h1 {
        font-family: Inter;
        font-weight: 600;
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -0.64px;
        text-transform: capitalize;
        margin-bottom: 12px;
    }

    .hero-section--globalHeroTyp1 h5 {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .hero-section--globalHeroTyp1 p {
        font-family: Outfit;
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-section--globalHeroTyp1 .content--globalHeroTyp1 .main-title-box--globalHeroTyp1 {
        margin-bottom: 12px;
    }

    /* Mobile view Industry We Serve */
    .industry-we-serve-typ2--mobile {
        padding: 48px 0px;
        background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/06/WHy-Tru-Dark-Mobile-Version-1.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: left -1px;
    }

    .content-industryWeServe {
        margin-bottom: 48px;

    }

    .content-industryWeServe p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .swiper-slide.slide--industryWeServeMobileTyp1 {
        border: 1px solid transparent;
        background: linear-gradient(105.14deg, #6B6B6B -10.43%, #000000 112.11%) border-box;
        border-radius: 14px;
    }

    .card--industryWeServeMobileTyp1 {
        border-radius: 14px;
        background: var(--bg-color-typ3);
        min-height: 320px;
    }

    .card--industryWeServeMobileTyp1 img {
        border-radius: 12px 12px 0px 0px;
        aspect-ratio: 256/158;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card--industryWeServeMobileTyp1 h3 {
        font-family: Inter;
        font-weight: 500;
        font-size: 24px;
        line-height: 1.3;
        color: var(--primary-txt-color);
        margin-bottom: 12px;
        padding: 20px 16px 0px;
    }

    .card--industryWeServeMobileTyp1 p {
        font-size: 16px;
        line-height: 1.5;
        color: var(--secondary-txt-color);
        margin: 0px;
        padding: 0px 16px 20px;
    }

    .d-flex-btn--industryWeServeMobileTyp1 {
        display: flex;
        justify-content: center;
        margin-top: 24px;
        column-gap: 20px;
    }

    /* What We Do */
    .what-we-do {
        padding: 48px 0px;
        background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/06/What-We-Do.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom left;
        background-position: left calc(100% + 2px);
    }

    .what-we-do .d-flex-card--whatwedo {
        flex-direction: column;
        gap: 0px;
    }

    .what-we-do p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .what-we-do .card--whatwedo {
        width: 100%;
        padding: 28px;
        min-height: 291px;
        box-shadow: 0px 0px 0px 2px var(--gray-border-color-typ2);
    }

    .what-we-do .card--whatwedo:not(:last-child) {
        margin-bottom: 48px;
    }

    .what-we-do .content--whatwedo {
        margin-bottom: 48px;
    }

    .what-we-do .card--whatwedo .title--cardWhatWeDo {
        font-size: 24px;
        line-height: 1.3;
    }

    .what-we-do .card--whatwedo p {
        font-size: 16px;
        line-height: 1.5;
    }

    .what-we-do .card--whatwedo img {
        height: 64px;
        width: 64px;
        padding: 12px;
        margin-bottom: 24px;
    }

    /* Testimonials */
    .testimonials-section-typ1 {
        padding: 48px 0px;
    }

    .testimonials-section-typ1 .content--testimonialsSectTyp1 .main-heading--bpo,
    .testimonials-section-typ1 .content--testimonialsSectTyp1 .secondary-heading--bpo {
        text-align: center;
    }

    .testimonials-section-typ1 .content--testimonialsSectTyp1 p {
        margin-bottom: 48px;
        text-align: center;
    }

    .testimonials-section-typ1 .d-flex-card-body--testimonialsTyp1 {
        padding: 32px 16px;
    }

    .testimonials-section-typ1 .header-card--testimonialsTyp1 p {
        font-weight: 300;
        text-align: center;
        margin-bottom: 24px;
        min-height: 200px;
        overflow: hidden;
    }

    .testimonials-section-typ1 .footer-card--testimonialsTyp1 .rating-stars--testimonialsTyp1 {
        height: 16px;
    }

    .testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }

    .testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 .swiper-button-prev,
    .testimonials-section-typ1 .d-flex-btn--testimonialsTyp1 .swiper-button-next {
        position: unset;
        margin-top: unset;
    }

    .testimonials-section-typ1 .header-card--testimonialsTyp1 .qoute-icon--testimonialsTyp1 {
        height: 30px;
        width: 42px;
        object-fit: cover;
    }

    /* Banner Let Build Dreams */
    .banner--lets-build-dreams {
        padding: 48px 0px;
        min-height: 502px;
        display: flex;
        align-items: center;
    }

    .banner--lets-build-dreams h2 {
        line-height: 1.3;
        text-transform: capitalize;
    }

    .banner--lets-build-dreams p {
        margin-bottom: 24px;
    }

    /* Case Studies & Success Stories */
    .case-study-and-success-stories {
        padding: 48px 0px;
        /* background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/06/Case-Studies-Dark-Mobile-Version.svg); */
        background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/08/Case-Studies-Dark-Mobile-Version.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-size: cover;
        background-position: left -1px;
    }

    .case-study-and-success-stories .intro-content--casestudy {
        margin-bottom: 48px;
        text-align: left;
    }

    .case-study-and-success-stories .intro-content--casestudy p {
        margin-bottom: 24px;
    }

    .CaseStudySlider .d-flex-card-body--caseStudySlide {
        padding: 0px;
        grid-template-columns: 1fr;
        gap: 0px;
        background: var(--bg-color-typ1);
        border-radius: 12px;
    }

    .CaseStudySlider .card--caseStudySlide .host-img--caseStudySlide {
        border-radius: 12px 12px 0px 0px;
        aspect-ratio: 256/179;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .CaseStudySlider .card--caseStudySlide.d-flex-content--caseStudySlide {
        padding: 28px 16px;
        background: unset;
    }

    .CaseStudySlider .card--caseStudySlide h4 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .CaseStudySlider .card--caseStudySlide p {
        font-size: 14px;
        -webkit-line-clamp: 4;
        min-height: unset;
        margin: 0px;
    }

    .CaseStudySlider .card--caseStudySlide .d-flex--metrics {
        flex-direction: column;
        border: none;
        padding-top: 24px;
    }

    .CaseStudySlider .card--caseStudySlide .value--metrics {
        font-size: 40px;
        margin-bottom: 2px;
    }

    .CaseStudySlider .card--caseStudySlide .label--metrics {}

    .CaseStudySlider .card--caseStudySlide .partition-line--metrics {
        width: 100%;
        background: var(--bg-color-typ5);
        height: 1px;
        margin: 24px 0px;
    }

    .CaseStudySlider .card--caseStudySlide .btn--primary {
        margin-top: 28px;
    }

    .CaseStudySlider .d-flex-slider-btn--caseStudy {
        margin-top: 24px;
    }

    /* Tech Stack */
    .tech-stack--section {
        padding: 48px 0px;
        background: url(https://bpo.tp-devserver.com/wp-content/uploads/2025/08/Homepage-Dark-Mobile-Version.svg)center center/cover no-repeat;
    }

    .tech-stack--section .content--tech-stack {
        margin-bottom: 24px;
    }

    .tech-stack--section .content--tech-stack .secondary-heading--bpo {
        text-align: center;
    }

    .tech-stack--section .content--tech-stack .main-heading--bpo {
        text-align: center;
    }

    .content--tech-stack p {
        white-space: unset;
        text-align: center;
        margin-bottom: 0px;
    }

    .tech-stack--section .d-flex--tech-stack {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        gap: 24px 14px;
    }

    .tech-stack--section .card--tech-stack {
        padding: 4px 11px;
        border-radius: 8px;
    }

    .tech-stack--section .card--tech-stack img {
        aspect-ratio: 100 / 44;
        padding: 0px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .tech-stack--section .card--tech-stack::before {
        border-radius: 8px;
        left: -1px;
        top: -1px;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
    }

    .tech-stack--section .card--tech-stack::after {
        border-radius: 8px;
    }

    .tech-stack--section .d-flex--tech-stack::before {
        height: 100%;
        width: 1px;
        left: 50%;
    }

    .card--tech-stack:nth-child(1)::after,
    .card--tech-stack:nth-child(2)::after,
    .card--tech-stack:nth-child(3)::after {
        display: none;
    }

    .tech-stack--section .card--tech-stack:nth-child(1)::before,
    .tech-stack--section .card--tech-stack:nth-child(3)::before,
    .tech-stack--section .card--tech-stack:nth-child(5)::before {
        content: '';
        position: absolute;
        top: calc(100% + 12px);
        height: 1px;
        width: calc(200% + 14px);
        background: var(--bg-color-typ4);
    }

    /* Solutions Internal Solution Page  */

    /* Section 1 - internal solution page  */
    .section-typ1-internalSolutionPg,
    .section-sliderInternalSolutionTyp1,
    .section-three--CardGridInterSolutionTyp1,
    .section4-client-success-internalSolutions {
        padding: 48px 0px;
    }

    

    .ribbon--busiOps {
        margin: 48px 32px 0px;
        padding: 10px;
    }

    .ribbon--busiOps .container {
        padding: 0px;
    }

    .ribbon--busiOps p {
        font-size: 14px;
    }

    .ribbon--busiOps p strong {
        font-size: 18px;
        display: block;
        margin-bottom: 4px;
    }


    /* Section 2 - internal solution page  */
    


    /* Section 3 - internal solution page  */
    .section-three--CardGridInterSolutionTyp1.section-3-Mobile--CardGridInterSolutionTyp1 .content--Section3CardGridInternalSolutionTyp1 {
        margin-bottom: 48px;
    }

    .section-three--CardGridInterSolutionTyp1.section-3-Mobile--CardGridInterSolutionTyp1 .content--Section3CardGridInternalSolutionTyp1 p {
        margin-bottom: 24px;
    }


    /* Section 4 - internal solution page  */
    .section4-client-success-internalSolutions .d-flex {
        flex-direction: column;
    }

    .section4-client-success-internalSolutions .content-main--section4InternalSolutions {
        margin-bottom: 24px;
    }

    .section4-client-success-internalSolutions .card--section4InternalSolutions .metric-value--section4InternalSolutions {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .section4-client-success-internalSolutions .card--section4InternalSolutions p {
        margin-bottom: 0px;
    }

    .section4-client-success-internalSolutions .divider--section4InternalSolutions {
        margin-bottom: 24px;
    }

    /* Global Cards  */
    .global-feature-card-type1 {
        padding: 28px;
        border-radius: 12px;
        box-shadow: inset 0px 0px 0px 2px var(--gray-border-color-typ2, #323437);
    }

    .global-feature-card-type1 .title--GlobalFeatsCardTyp1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .global-feature-card-type1>*:last-child {
        margin-bottom: 0px;
    }

    .global-feature-card-type1 .icon-img--GlobalFeatsCardTyp1 {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }





}

@media (max-width: 320px) {
    .wrrapper-GlobalCardSliderTyp1 .card--GlobalCardSliderTyp1 h3 {
        max-width: 172px;
    }
}