/* ------------------------------ Tech RPO Page ------------------------------ */
body {
    padding: 0;
    margin: 0;
}

*,
*::before,
*::after {
    font-family: "Montserrat", sans-serif !important;
}

.tech-rpo-page {
    font-family: "Montserrat", sans-serif;
    background: var(--bg);
    color: var(--primary);
    margin: 0;
    line-height: 1.6;
}

.tech-rpo-page {
    --primary: #0a2342;
    --secondary: #1769aa;
    --accent: #00b4d8;
    --bg: #f8fafc;
    --white: #fff;
    --gray: #e5e7eb;
    --charcoal: #22223b;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(10, 35, 66, 0.08);
    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

.tech-rpo-page * {
    box-sizing: border-box;
}

.tech-rpo-page a,
.tech-rpo-page button {
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.tech-rpo-page section {
    padding: 64px 0;
    position: relative;
}

.tech-rpo-page .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.tech-rpo-page .hero-section {
    background: url("../img/technical/banner-img.png") no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 96px 0 72px 0;
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.tech-rpo-page .hero-section::after {
    content: "";
    background-color: color-mix(in srgb, #2d3748, transparent 30%);
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
}

.tech-rpo-page .hero-section .container {
    position: relative;
    z-index: 1;
}

.tech-rpo-page .hero-section h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0;
    color: #fff;
    line-height: 1.5;
}

.tech-rpo-page .hero-section p {
    font-size: 1.25rem;
    margin-bottom: 36px;
    color: #e0e7ef;
    max-width: 880px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.tech-rpo-page .cta-btn {
    display: inline-block;
    background: #56b8e6;
    color: var(--white);
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0, 180, 216, 0.10);
    transition: background var(--transition), transform var(--transition);
    margin: 0 auto;
    border-radius: 50px;

    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
}


.tech-rpo-page .cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px) scale(1.03);
}

/* WHAT WE OFFER */
.tech-rpo-page .offer-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
    text-align: center;
}

.tech-rpo-page .offer-section p {
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.tech-rpo-page .offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 16px;
}

.tech-rpo-page .offer-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 24px 28px 24px;
    transition: box-shadow var(--transition), transform var(--transition);
    border-top: 4px solid #56b8e6;
    position: relative;
    min-height: 260px;
}

.tech-rpo-page .offer-card:hover {
    box-shadow: 0 8px 32px rgba(23, 105, 170, 0.13);
    transform: translateY(-4px) scale(1.02);
}

.tech-rpo-page .offer-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #56b8e6;
}

.tech-rpo-page .offer-card ul {
    padding-left: 18px;
    margin: 0;
    color: var(--primary);
    font-size: 1rem;
}

.tech-rpo-page .offer-card ul li {
    margin-bottom: 8px;
    list-style: disc;
}

/* CTA Section 1 */
.tech-rpo-page .cta-section {
    background: #17283be6;
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    margin: 48px 0 0 0;
    padding: 48px 0 40px 0;
    box-shadow: var(--shadow);
}

.tech-rpo-page .cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 22px;
    font-weight: 600;
    color: #fff;
}

/* COMPARISON TABLE */
.tech-rpo-page .comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 18px;
    color: var(--primary);
}

.tech-rpo-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 24px;
}

.tech-rpo-page .comparison-table th,
.tech-rpo-page .comparison-table td {
    padding: 18px 12px;
    text-align: center;
    border-bottom: 1px solid var(--gray);
    font-size: 1rem;
}

.tech-rpo-page .comparison-table th {
    background: var(--bg);
    color: var(--secondary);
    font-weight: 700;
}

.modales-btnbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-rpo-page .comparison-table tr:last-child td {
    border-bottom: none;
}

.tech-rpo-page .checkmark {
    color: var(--accent);
    font-size: 1.3em;
    font-weight: bold;
}

/* INDUSTRIES */
.tech-rpo-page .industries-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.tech-rpo-page .industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 32px 0 18px 0;
}

.tech-rpo-page .industry-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 32px;
    min-width: 140px;
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.tech-rpo-page .industry-card:hover {
    box-shadow: 0 8px 32px rgba(23, 105, 170, 0.13);
    transform: translateY(-4px) scale(1.04);
}

.tech-rpo-page .industry-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.tech-rpo-page .industries-section p {
    text-align: center;
    color: var(--charcoal);
    margin-top: 12px;
    font-size: 1.08rem;
}

/* ROLES WE HIRE */

.tech-rpo-page .roles-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.tech-rpo-page .roles-collapsible {
    max-width: 900px;
    margin: 32px auto 0 auto;
}

.tech-rpo-page .role-group {
    background: var(--white);
    margin-bottom: 18px;
    border-radius: 50px;
}

.tech-rpo-page .role-header {
    padding: 18px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    background: var(--bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    outline: none;
    transition: background var(--transition);
    border: 1px solid #c4e5ff;
    width: 100%;
    border-radius: 50px;
}


.tech-rpo-page .role-header:hover {
    background: #eaf4fb;
}

.tech-rpo-page .role-list {
    padding: 0 28px 18px 48px;
    display: none;
    color: var(--primary);
    font-size: 1rem;
}

.tech-rpo-page .role-group.active .role-list {
    display: block;
    animation: techRpoFadeIn 0.4s;
    padding-top: 30px;

}

.tech-rpo-page .role-group.active {
    box-shadow: var(--shadow);
}

@keyframes techRpoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WHY TRUST */
.tech-rpo-page .why-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.tech-rpo-page .why-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 32px 0 0 0;
}

.tech-rpo-page .why-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 32px;
    width: calc(100% / 3);
    text-align: left;
    font-weight: 500;
    color: var(--primary);
    font-size: 1.08rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tech-rpo-page .why-icon {
    font-size: 1.7rem;
    color: var(--accent);
    margin-top: 2px;
}

/* TECH STACK */
.tech-rpo-page .stack-section {
    background: #f8fafc;
}

.tech-rpo-page .stack-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.tech-rpo-page .stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 32px 0 0 0;
}

.tech-rpo-page .stack-tag {
    background: #d7edff;
    color: #1685b9;
    border: 1px solid #c4e5ff;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    transition: background var(--transition), color var(--transition);
}

.tech-rpo-page .stack-tag:hover {
    background: var(--accent);
    color: var(--primary);
}

/* CTA Section 2 */
.tech-rpo-page .cta-hero {
    background: #17283b;
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    padding: 64px 0 56px 0;
    box-shadow: var(--shadow);
}

.tech-rpo-page .cta-hero h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    font-weight: 700;
    color: #fff;
}

/* TESTIMONIALS */
.tech-rpo-page .testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.tech-rpo-page .testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 32px 0 0 0;
}

.tech-rpo-page .testimonial {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 28px 24px 28px;
    min-width: 280px;
    max-width: 400px;
    font-size: 1.08rem;
    color: var(--primary);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tech-rpo-page .testimonial:before {
    content: '“';
    font-size: 2.5rem;
    color: var(--accent);
    position: absolute;
    top: 12px;
    left: 18px;
    opacity: 0.2;
}

.tech-rpo-page .testimonial-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 8px;
}

/* FINAL CTA SPLIT */
.tech-rpo-page .final-cta-section.creative-final-cta {
    background: linear-gradient(120deg, #eaf4fb 60%, #f8fafc 100%);
    color: var(--primary);
    border-radius: var(--radius);
    padding: 0;
    /* box-shadow: var(--shadow); */
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.tech-rpo-page .final-cta-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 320px;
}

.tech-rpo-page .final-cta-visual {
    min-height: 320px;
    max-height: 380px;
    overflow: hidden;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.tech-rpo-page .final-cta-visual img {
    max-width: 100%;
    height: auto;
}

.tech-rpo-page .final-cta-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="340" height="320" xmlns="http://www.w3.org/2000/svg"><rect width="340" height="320" fill="none"/><circle cx="60" cy="60" r="2" fill="%2300b4d8" opacity="0.12"/><circle cx="120" cy="180" r="3" fill="%231769aa" opacity="0.10"/><circle cx="200" cy="100" r="2.5" fill="%2300b4d8" opacity="0.10"/><circle cx="300" cy="220" r="2" fill="%231769aa" opacity="0.08"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
    border-radius: var(--radius) 0 0 var(--radius);
}

.tech-rpo-page .final-cta-content.creative {
    flex: 1 1 380px;
    padding: 56px 40px 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.tech-rpo-page .final-cta-content.creative h2 {
    font-size: 1.7rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.tech-rpo-page .final-cta-list.creative {
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.13rem;
    animation: techRpoFadeInUp 1.2s cubic-bezier(.4, 0, .2, 1);
}

.tech-rpo-page .final-cta-list.creative li {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: techRpoCtaPointIn 0.7s forwards;
}

.tech-rpo-page .final-cta-list.creative li:nth-child(1) {
    animation-delay: 0.1s;
}

.tech-rpo-page .final-cta-list.creative li:nth-child(2) {
    animation-delay: 0.25s;
}

.tech-rpo-page .final-cta-list.creative li:nth-child(3) {
    animation-delay: 0.4s;
}

.tech-rpo-page .final-cta-list.creative li:nth-child(4) {
    animation-delay: 0.55s;
}

@keyframes techRpoCtaPointIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-rpo-page .final-cta-icon {
    font-size: 1.3em;
    color: var(--accent);
    flex-shrink: 0;
}

.tech-rpo-page .final-cta-point {
    color: var(--primary);
    font-weight: 500;
}

.tech-rpo-page .final-cta-actions.creative {
    display: flex;
    flex-direction: row;
    gap: 18px;
    margin-top: 8px;
}

.tech-rpo-page .final-cta-btn.creative {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 28px;
    font-size: 1.13rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(23, 105, 170, 0.10);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: 0.02em;
    outline: none;
    border: 2px solid transparent;
    font-size: 16px;
    border-radius: 80px;
}

.tech-rpo-page .final-cta-btn.creative.main {
    background: #56b8e6;
    color: #fff;


}

.tech-rpo-page .final-cta-btn.creative.alt {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);

}

.tech-rpo-page .final-cta-btn.creative:hover,
.tech-rpo-page .final-cta-btn.creative:focus {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(10, 35, 66, 0.13);
}

/* Responsive */
@media (max-width: 900px) {
    .tech-rpo-page .final-cta-flex {
        flex-direction: column;
        min-height: unset;
    }

    .tech-rpo-page .final-cta-visual {
        width: 100%;
        min-height: 180px;
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .tech-rpo-page .final-cta-content.creative {
        padding: 40px 16px 40px 16px;
    }
}

@media (max-width: 700px) {
    .tech-rpo-page .container {
        width: 98%;
    }

    .tech-rpo-page section {
        padding: 40px 0 32px 0;
    }

    .tech-rpo-page .hero {
        padding: 64px 0 48px 0;
    }

    .tech-rpo-page .cta-hero {
        padding: 40px 0 32px 0;
    }

    .tech-rpo-page .final-cta-section.creative-final-cta {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .tech-rpo-page .final-cta-content.creative h2 {
        font-size: 1.15rem;
    }

    .tech-rpo-page .final-cta-btn.creative {
        font-size: 1rem;
        padding: 12px 18px;
    }
}

@keyframes techRpoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-rpo-page {
    scroll-behavior: smooth;
}

/* ----- testimonials section ----- */
.testimonials-section {
    padding: 60px 0;
    background: #f8fafc;
    overflow-x: hidden;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 32px;
    font-weight: 700;
    color: #1769aa;
}

.testimonials-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 24px;
}

.slider-btn {
    background: #1769aa;
    border: none;
    box-shadow: 0 2px 8px rgba(23, 105, 170, 0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.slider-btn.slider-btn-left {
    left: 0;
    position: absolute;
}

.slider-btn.slider-btn-right {
    right: 0;
    position: absolute;
}

.slider-btn:hover {
    background: #2e81c5;
    /* color: #1769aa; */
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
    width: 100%;
    padding: 16px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgb(23 105 170 / 5%);
    padding: 40px;
    min-width: calc(100% / 2 - 2px);
    flex: 0 0 45%;
    min-height: 170px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.08rem;
    color: #222;
    position: relative;
}

.tech-rpo-page .testimonial-card:before {
    content: '“';
    font-size: 2.5rem;
    color: #1769aa;
    position: absolute;
    top: 12px;
    left: 18px;
    opacity: 1;
}

.testimonial-author {
    margin-top: 18px;
    font-weight: 500;
    color: #1769aa;
    font-size: 1rem;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .testimonials-slider {
        max-width: 98vw;
    }

    .testimonial-card {
        min-width: calc(100%);
        min-height: 200px;
    }

    .testimonials-track {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .testimonials-slider {
        max-width: 100vw;
    }

    .testimonial-card {
        min-width: 90vw;
        max-width: 95vw;
        flex: 0 0 95vw;
    }

    .testimonials-track {
        gap: 8px;
    }
}




/* ---------------- non-technical  css ---------------- */

.outsourcing-page {
    font-family: "Montserrat", sans-serif;
    background: #f8fafc;
    color: #222;
    margin: 0;
    padding: 0;
}

.outsourcing-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.outsourcing-page section {
    padding: 64px 0 48px 0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(23, 105, 170, 0.07);
}

@media (max-width: 700px) {
    .outsourcing-page section {
        padding: 36px 0 24px 0;
        margin-bottom: 18px;
    }
}

.outsourcing-page h1,
.outsourcing-page h2,
.outsourcing-page h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1b2f45;
    font-weight: 700;
    margin-bottom: 18px;
}

.outsourcing-page h1 {
    font-size: 2.2rem;
}

.outsourcing-page h2 {
    font-size: 1.6rem;
}

.outsourcing-page h3 {
    font-size: 1.2rem;
}

.outsourcing-page .hero-section {
    background: url("../img/non-techbanner-img.png") no-repeat center center;
    display: flex;
    align-items: center;
    min-height: 60vh;
    box-shadow: 0 4px 24px rgba(23, 105, 170, 0.07);
    background-size: cover;
    position: relative;
}

.outsourcing-page .hero-section .container {
    position: relative;
    z-index: 2;
}

.outsourcing-page .hero-section::after {
    content: "";
    background-color: color-mix(in srgb, #23509d, transparent 30%);
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
}




.outsourcing-page .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: center;
}


.outsourcing-page .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outsourcing-page .hero-text h1 {
    margin-bottom: 16px;
    font-size: 2.6rem;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}

.outsourcing-page .hero-text p {
    font-size: 1.25rem;
    margin-bottom: 18px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.outsourcing-page .hero-bullets {
    margin-bottom: 22px;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.outsourcing-page .hero-bullets li {
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    padding-left: 28px;
    color: #fff;
    padding: 10px 30px;
    background: #6694ab61;
    border-radius: 50px;
}

/* .outsourcing-page .hero-bullets li::before {
    content: '✔';
    color: #00b4d8;
    position: absolute;
    left: 0;
    font-size: 1.1em;
    top: 0;
} */

.outsourcing-page .cta-btn,
.outsourcing-page .final-cta-btn {
    display: inline-block;
    background: #223b4e;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(23, 105, 170, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.outsourcing-page .cta-btn:hover,
.outsourcing-page .final-cta-btn:hover {
    background: #305570;
    box-shadow: 0 4px 16px rgba(23, 105, 170, 0.13);
}

/* Why Choose Section */
.outsourcing-page .why-section {
    background: #f3f3f3;
    box-shadow: none;
}

.outsourcing-page .why-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
    padding-left: 0;
    list-style: none;
    justify-content: center;
}

.outsourcing-page .why-item {
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(23, 105, 170, 0.07);
    padding: 18px 16px 16px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.outsourcing-page .why-icon {
    font-size: 1.4em;
    color: #00b4d8;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Our Services */
.outsourcing-page .services-section {
    background: #fff;
}

.outsourcing-page .services-section h2,
.outsourcing-page .services-section p {
    text-align: center;
}

.outsourcing-page .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 32px;
    justify-content: center;
}

.outsourcing-page .service-block {
    background: #f3f3f3;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(23, 105, 170, 0.07);
    padding: 28px 22px 20px 22px;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 320px;
    margin-bottom: 8px;
}



.outsourcing-page .service-block h3 {
    color: #565656;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.outsourcing-page .service-block ul {
    padding-left: 0;
    margin: 0;
    color: #333;
    font-size: 0.98rem;
}

.outsourcing-page .service-block ul li {
    /* margin-left: 10px; */
    list-style: none;
    position: relative;
    display: flex;
    gap: 10px;
}

.outsourcing-page .service-block ul li::before {
    content: '✔';
    color: #23509d;
    font-size: 1.1em;
}

/* Detailed Why Choose */
.outsourcing-page .why-detailed-section {
    background: url("../img/non-techbanner-whychoose.png") no-repeat center center;
    background-size: cover;
    position: relative;

}

.outsourcing-page .why-detailed-section::after {
    content: "";
    background-color: color-mix(in srgb, #23509d, transparent 12%);
    position: absolute;
    inset: 0;
    backdrop-filter: blur(9px);
}

.outsourcing-page .why-detailed-section .container {
    position: relative;
    z-index: 2;
}

.outsourcing-page .why-detailed-section h2,
.outsourcing-page .why-detailed-section p {
    text-align: center;
    color: #fff;
}

.outsourcing-page .why-detailed-section p {
    margin-bottom: 30px;
}

.outsourcing-page .why-detailed-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
    justify-content: center;
    padding-left: 0;
    list-style: none;
}

.outsourcing-page .why-detailed-item {
    background: #07112452;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(23, 105, 170, 0.07);
    padding: 10px 18px;
    min-width: 270px;
    max-width: 270px;
    font-size: 14px;
    text-align: center;
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-weight: 600; */
    color: #ffffff;
}

/* Industries */
.outsourcing-page .industries-section {
    background: #fff;
}

.outsourcing-page .industries-section h2 {
    text-align: center;
}

.outsourcing-page .industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
    justify-content: center;
}

.outsourcing-page .industry-card {
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(23, 105, 170, 0.07);
    padding: 22px 18px;
    min-width: 160px;
    max-width: 200px;
    min-height: auto;
    text-align: center;
    font-size: 1rem;
    color: #565656;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.outsourcing-page .industry-icon {
    font-size: 2em;
    margin-bottom: 6px;
}

/* Process Section */
.outsourcing-page .process-section {
    background: #f0f0f0;
}

.outsourcing-page .process-section h2 {
    text-align: center;
}

.outsourcing-page .process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
    justify-content: center;
}

.outsourcing-page .process-step {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(23, 105, 170, 0.07);
    padding: 18px 16px;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    font-size: 1rem;
    position: relative;
    flex: 1 1 160px;
    min-height: 100%;
    margin-bottom: unset;
    height: unset;
}

.outsourcing-page .process-step-number {
    background: #23509d;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
    margin: 0 auto 10px auto;
}

/* Final CTA */
.outsourcing-page .final-cta-section {
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 24px rgba(23, 105, 170, 0.07);
}

.outsourcing-page .final-cta-section h2 {
    margin-bottom: 16px;
}

.outsourcing-page .final-cta-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 18px 0 24px 0;
}

.outsourcing-page .final-cta-highlight {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px #1769aa26;
    padding: 14px 18px;
    min-width: 140px;
    max-width: 200px;
    font-size: 1rem;
    color: #1b2f45;
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .outsourcing-page .hero-content {
        flex-direction: column;
        gap: 24px;
    }

    .outsourcing-page .services-grid,
    .outsourcing-page .why-list,
    .outsourcing-page .why-detailed-list,
    .outsourcing-page .industries-grid,
    .outsourcing-page .process-steps,
    .outsourcing-page .final-cta-highlights {
        flex-direction: column;
        align-items: center;
    }

    .outsourcing-page .service-block,
    .outsourcing-page .why-item,
    .outsourcing-page .why-detailed-item,
    .outsourcing-page .industry-card,
    .outsourcing-page .process-step,
    .outsourcing-page .final-cta-highlight {
        max-width: 98vw;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .outsourcing-page .container {
        padding: 0 8px;
    }

    .outsourcing-page h1 {
        font-size: 1.3rem;
    }

    .outsourcing-page h2 {
        font-size: 1.1rem;
    }

    .outsourcing-page .hero-section {
        min-height: 320px;
    }

    .outsourcing-page section {
        padding: 18px 0 12px 0;
    }
}

/* ------------------- Engagement model ----------------- */
.engagement-model #table-tabssec .ostg-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 30px;
    gap: 20px;
}

.engagement-model #table-tabssec .ostg-tab-content {
    display: none;
}

.engagement-model #table-tabssec .ostg-tab-content.active {
    display: block;
}

.engagement-model #table-tabssec .ostg-tab-btn {
    display: inline-block;
    background: #f0f0f0;
    color: #333;
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
}

.engagement-model #table-tabssec .ostg-tab-btn.active {
    background: #56b8e6;
    color: #fff;
}

.engagement-model .hero-section p {
    font-size: 1.25rem;
    margin-bottom: 36px;
    color: #e0e7ef;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.engagement-model .hero-section {
    background-image: url("../img/engagement-bannerimg.png");
}



@media (max-width: 991px) {
    .outsourcing-page .hero-text h1 {
        font-size: 2.1rem;
    }

    .outsourcing-page .hero-bullets {
        flex-wrap: wrap;
    }

    .outsourcing-page .hero-section {
        min-height: 100vh;
    }


    .outsourcing-page .services-grid,
    .outsourcing-page .why-detailed-list,
    .outsourcing-page .why-list,
    .outsourcing-page .industries-grid,
    .outsourcing-page .process-steps,
    .outsourcing-page .final-cta-highlights {
        flex-direction: row;
    }

    .tech-rpo-page .comparison-table {
        min-width: 1200px;
    }
}

@media (max-width: 767px) {

    .outsourcing-page .why-item,
    .outsourcing-page .why-detailed-item,
    .outsourcing-page .process-step {
        min-width: calc(100% /2 - 20px);
    }


}

@media (max-width: 576px) {

    .tech-rpo-page .hero-section h1,
    .tech-rpo-page .offer-section h2,
    .tech-rpo-page .cta-hero h2 {
        font-size: 1.6rem;
    }


    .outsourcing-page .why-detailed-item {
        max-height: 50px;
        min-width: 60% !important;
    }

    .tech-rpo-page .industry-card {
        min-width: calc(100% / 2 - 20px);
    }

    .tech-rpo-page .why-item {
        width: 100%;
    }

    .testimonial-card {
        min-width: 100vw;
        max-width: 100vw;
        flex: 0 0 100vw;
    }

    .testimonials-slider {
        padding: 0;
    }

    .tech-rpo-page .final-cta-actions.creative {
        flex-direction: column;
    }

    .outsourcing-page .hero-section {
        min-height: 100vh;
    }

    .outsourcing-page .why-item,
    .outsourcing-page .why-detailed-item,
    .outsourcing-page .process-step {
        min-width: 100%;
    }

    .engagement-model #table-tabssec .ostg-tabs {
        flex-direction: column;
    }

}

.engagement-ctasec {
    position: relative;
}

.engagement-ctasec::after {
    content: "";
    background-color: #2d3748;
    position: absolute;
    inset: 0;
    backdrop-filter: blur(9px);
}

.engagement-ctasec .container {
    position: relative;
    z-index: 2;
}

.engagement-ctasec h2,
.engagement-ctasec p {
    color: #fff;
    margin-bottom: 18px;
}

.engagement-ctasec p {
    margin-bottom: 24px;
    font-size: 18px;
}

.outsourcing-page .role-group {
    background: var(--white);
    margin-bottom: 18px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(23, 105, 170, 0.07);
}

.outsourcing-page .role-header {
    padding: 18px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1769aa;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    outline: none;
    transition: background var(--transition);
    border: 1px solid #c4e5ff;
    width: 100%;
    border-radius: 50px;
}

.outsourcing-page .services-collapsible {
    max-width: 900px;
    margin: 32px auto 0 auto;
}

.outsourcing-page .role-header:hover {
    background: #eaf4fb;
}

.outsourcing-page .role-list {
    padding: 0 28px 18px 48px;
    display: none;
    color: var(--primary);
    font-size: 1rem;
}

.outsourcing-page .role-group.active .role-list {
    display: block;
    animation: techRpoFadeIn 0.4s;
    padding-top: 30px;
}

.outsourcing-page .role-group.active {
    box-shadow: 0 4px 24px rgba(10, 35, 66, 0.08);
}

.outsourcing-page .role-header span {
    margin-left: 12px;
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.3s;
}

.outsourcing-page .role-group.active .role-header span {
    transform: rotate(45deg);
}


.outsourcing-page .services-collapsible .role-list ul li p {
    text-align: start;

}

.outsourcing-page .services-collapsible .role-list ul li p.heading {
    font-weight: 600;
}