/* ============================================================
   styles.css — Outsourced Finance Function in Cambridge
   All CSS extracted from index.html — nothing changed/removed
   ============================================================ */


/* -------------------------------------------------------
   ROOT VARIABLES (global)
   ------------------------------------------------------- */
:root {
    --brand-blue: #100190;
    --btn-hover: #0a0157;
    --text-dark: #060b1a;
    --text-muted: #4b5563;
    --gold:    #ffd700;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    margin: 0;
}


/* -------------------------------------------------------
   HERO SECTION (first/commented block — kept as reference)
   ------------------------------------------------------- */

/* Subtle Grid Texture */
.hero-section {
    position: relative;
    padding: 60px 0 40px 0;
    background: linear-gradient(135deg, #fbfcfe 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#1001900a 1px, transparent 1px), linear-gradient(90deg, #1001900a 1px, transparent 1px);
    background-size: 45px 45px;
    pointer-events: none;
}

/* Decorative Background Blobs */
.blob {
    position: absolute;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.5;
}

.blob-blue {
    top: 5%;
    left: -2%;
    width: 100px;
    height: 100px;
    background: #10019022;
    border-radius: 50%;
}

.blob-yellow {
    bottom: 10%;
    right: 0%;
    width: 150px;
    height: 150px;
    background: #F3F94533;
    border-radius: 50%;
}

/* Typography */
h1 {
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--brand-blue);
    margin-bottom: 24px;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 650px;
}

.pricing-text {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 20px 0;
}

.pricing-text span {
    color: green;
    border: 1px dotted;
    padding: 3px 8px;
    border-radius: 8px;
}

/* Form Card */
.form-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    z-index: 10;
}

.form-container h2 {
    font-weight: 800;
    font-size: 1.75rem;
}

.form-control {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #374151;
}

/* Buttons */
.btn-filled {
    background: var(--brand-blue);
    color: white;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    border: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-filled:hover {
    background: var(--btn-hover);
    color: white;
}

.btn-outline {
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--brand-blue);
    color: white;
}

/* Counter Section */
.counter-section {
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
}

.counter-item h3 {
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 2px;
    font-size: 1.5rem;
}

.counter-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: capitalize;
    margin: 0;
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        text-align: center;
    }

    .description {
        margin: 0 auto;
    }
}


/* -------------------------------------------------------
   HEADER — TOP BAR CUSTOMIZATION
   ------------------------------------------------------- */

/* 1. TOP BAR CUSTOMIZATION */
.exu-top-bar {
    background: #100190;
    /* Exact color requested */
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exu-top-bar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.exu-top-bar a i {
    color: #69d3f9;
    /* Cyan accent for icons */
    margin-right: 8px;
}

.region-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

/* FLAG BORDER STYLING */
.flag-border {
    border: 1.5px solid #ffffff;
    /* White border for the flags */
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.flag-links a {
    margin-left: 15px;
    display: inline-block;
    line-height: 0;
    font-size: 26px;
}

.flag-links a:hover .flag-border {
    transform: scale(1.15);
    border-color: #f26522;
    /* Changes border to brand orange on hover */
}

/* 2. MAIN NAV STYLING */
.exu-main-nav {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #100190;
    letter-spacing: -1px;
}

.text-blue {
    color: #2563eb;
}

.nav-link {
    color: #100190 !important;
    font-weight: 700;
    margin: 0 15px;
}

/* 3. BUTTON */
.btn-nav-cta {
    background: #f26522;
    /* Brand Orange */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-nav-cta:hover {
    background: #100190;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .flag-links {
        margin-top: 5px;
    }
}


/* -------------------------------------------------------
   HERO SECTION (active / blue background version)
   ------------------------------------------------------- */
:root {
    --brand-blue: #100190;
    --brand-yellow: #FFD700;
    --text-light-gray: #cbd5e1;
}

.hero-section {
    position: relative;
    padding: 50px 0 60px 0;
    background: var(--brand-blue);
    /* Section BG changed to Brand Blue */
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

/* Subtle Grid Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 45px 45px;
    pointer-events: none;
}

/* Hand-drawn Curve Styling */
.hero-accent {
    position: relative;
    display: inline-block;
    color: var(--brand-yellow);
}

.hero-curve {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
}

.description.text-light-gray {
    color: var(--text-light-gray);
    max-width: 650px;
    font-size: 1.05rem;
}

.text-yellow {
    color: var(--brand-yellow);
}

/* Buttons */
.btn-filled-white {
    background: #ffffff;
    color: var(--brand-blue);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn-filled-white:hover {
    background: var(--brand-yellow);
    color: var(--brand-blue);
}

.btn-outline-white {
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--brand-blue);
}

.btn-brand-blue {
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

/* Form Card stays White for contrast */
.form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-text span {
    border: 1px dashed var(--brand-yellow);
    padding: 5px 12px;
    border-radius: 8px;
    color: var(--brand-yellow) !important;
}

.blob-blue {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-yellow {
    bottom: 5%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
    }

    .hero-curve {
        bottom: -5px;
    }
}


/* -------------------------------------------------------
   SUPPORT SECTION
   ------------------------------------------------------- */

/* Section Container */
.exu-support-section {
    padding: 80px 0 40px 0;
    background-color: #fbfcfe;
    font-family: 'Nunito', sans-serif;
}

/* Badge Styling */
.exu-support-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 2px dashed #FFD700;
    border-radius: 50px;
    color: #060b1a;
    font-size: 0.9rem;
    font-weight: 700;
    background: #fff;
}

/* Title & Curve */
.exu-support-title {
    color: #060b1a;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.2;
}

.exu-support-accent {
    position: relative;
    color: #100190;
    /* Brand Blue */
    display: inline-block;
    font-style: italic;
}

.exu-support-curve {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
}

.exu-support-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.exu-support-btn {
    background: #6366f1;
    /* Bright Blue/Indigo */
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    transition: 0.3s;
}

.exu-support-btn:hover {
    transform: translateY(-3px);
    background: #4f46e5;
}

/* Bottom Feature Bar */
.exu-support-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    border: 1px solid #f1f5f9;
}

.exu-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    border-right: 1px solid #f1f5f9;
}

.exu-support-item:last-child {
    border-right: none;
}

.exu-support-icon {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    color: #100190;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.exu-support-item strong {
    display: block;
    font-size: 0.85rem;
    color: #060b1a;
    font-weight: 800;
}

.exu-support-item p {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .exu-support-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .exu-support-item {
        border-right: none;
        width: 45%;
    }

    .exu-support-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .exu-support-item {
        width: 100%;
    }
}


/* -------------------------------------------------------
   HIRING LEVELS SECTION
   ------------------------------------------------------- */

/* Prefixed CSS to prevent conflicts */
.hiring-levels-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Nunito', sans-serif;
}

.hiring-levels-title {
    font-weight: 800;
    font-size: 2.25rem;
    color: #060b1a;
    margin-bottom: 15px;
}

.hiring-levels-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hiring-levels-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hiring-levels-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hiring-levels-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hiring-levels-bg-cyan {
    background-color: #67e8f9;
    /* Cyan 300 */
    color: #083344;
}

.hiring-levels-card-title {
    font-weight: 800;
    font-size: 1.4rem;
    color: #060b1a;
    margin-bottom: 5px;
}

.hiring-levels-card-tag {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.hiring-levels-stats {
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.hiring-levels-stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.hiring-levels-brand-icon {
    color: #100190;
    margin-right: 5px;
    width: 16px;
}

.hiring-levels-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4b5563;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hiring-levels-title {
        font-size: 1.8rem;
    }

    .hiring-levels-card {
        padding: 20px;
    }
}


/* -------------------------------------------------------
   PREMIUM SLIDER SECTION
   ------------------------------------------------------- */

/* SECTION FOUNDATION */
.exu-premium-slider {
    background: linear-gradient(135deg, #3F51B5, #5e75f5);
    padding: 50px 0;
    overflow: hidden;

}



.text-blue {
    color: #69d3f9;
}

/* URGENCY BADGE */
.exu-urgency-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 25px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 12px;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* INFINITE ENGINE (NO GAPS) */
.exu-slider-window {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.exu-slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: infiniteSlide 30s linear infinite;
}

@keyframes infiniteSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.exu-slider-window {
    overflow: hidden;
}

/* CARD DESIGN */
.exu-talent-card {
    width: 340px;
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease;
}

.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.status-tag {
    font-size: 10px;
    font-weight: 900;
    color: #10b981;
}

.verified-icon {
    color: #69d3f9;
}

.avatar-bg {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border: 2px dashed #69d3f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 28px;
    color: #060b1a;
}

.exu-talent-card h4 {
    color: #060b1a;
    font-weight: 800;
    font-size: 20px;
    margin: 0;
}

.exu-talent-card p {
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.skill-pills {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-pills span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

/* REVEAL BUTTON LOGIC */
.btn-reveal-wrapper {
    background: #060b1a;
    color: white;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 12px;
}

.label-default {
    font-weight: 800;
    font-size: 12px;
    transition: 0.3s ease;
}

.label-price {
    position: absolute;
    top: 100%;
    font-size: 24px;
    font-weight: 900;
    color: #69d3f9;
    transition: 0.3s ease;
}

.label-price span {
    font-size: 12px;
    color: #94a3b8;
}

/* HOVER EFFECT ON BUTTON ONLY */
.btn-reveal-wrapper:hover .label-default {
    transform: translateY(-50px);
}

.btn-reveal-wrapper:hover .label-price {
    top: 10px;
}

/* HIRE BUTTON */
.btn-hire-orange {
    display: block;
    background: #f26522;
    /* Your Requested Orange */
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 8px 15px rgba(242, 101, 34, 0.2);
}

.btn-hire-orange:hover {
    background: #d4541a;
}

.exu-slider-window:hover .exu-slider-track {
    animation-play-state: paused;
}

/* DEFAULT STYLE */
.status-tag {
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* AVAILABLE NOW (GREEN) */
.status-tag.available {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* AVAILABLE SOON (YELLOW) */
.status-tag.soon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* BUSY (RED) */
.status-tag.busy {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}


/* -------------------------------------------------------
   CTA SECTION
   ------------------------------------------------------- */
.exu-cta-wrapper {
    padding: 40px 15px;
}

.exu-cta-box {
    position: relative;
    background: linear-gradient(135deg, #3F51B5, #5e75f5);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* TEXT */
.exu-cta-content h2 {
    font-family: var(--headerFonts);
    color: #fff;
    font-size: 28px;
    line-height: 1.4;
    margin: 0;
    max-width: 650px;
    font-weight: 600;
}

.exu-cta-content h2 span {
    display: block;
    font-weight: 700;
}

/* BUTTON */
.exu-cta-btn a {
    background: #fff;
    color: #3F51B5;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.exu-cta-btn a:hover {
    transform: translateY(-3px);
    background: #00042e;
    color: #fff;
}

/* SHAPES */
.exu-cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.exu-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 80px;
}

.exu-shape-2 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    right: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .exu-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .exu-cta-content h2 {
        font-size: 22px;
    }
}


/* -------------------------------------------------------
   PROFESSIONAL SERVICES SECTION
   ------------------------------------------------------- */

/* Prefixed Professional Section */
.exu-pro-services {
    padding: 100px 0;
    background-color: #f9fbff;
    position: relative;
    overflow: hidden;
}

/* Subtle Grid Mesh Background */
.exu-pro-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(#100190 1.5px, transparent 1.5px), linear-gradient(90deg, #100190 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Header */
.exu-pro-title {
    /* color: #100190; */
    font-weight: 800;
    font-size: 2.75rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.exu-pro-subtitle {
    color: #4b5563;
    /* Text Muted */
    font-size: 1.15rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.exu-pro-divider {
    width: 60px;
    height: 4px;
    background-color: #100190;
    border-radius: 10px;
    margin-bottom: 60px;
}

/* Grid */
.exu-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Professional Card */
.exu-pro-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

/* Left-side Accent Border */
.exu-pro-accent {
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: #100190;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.exu-pro-card:hover {
    transform: translateY(-10px);
    border-color: #10019022;
    box-shadow: 0 20px 40px -10px rgba(16, 1, 144, 0.1);
}

.exu-pro-card:hover .exu-pro-accent {
    top: 0;
    bottom: 0;
    border-radius: 0;
}

.exu-pro-card-title {
    color: #060b1a;
    /* Text Dark */
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.exu-pro-card:hover .exu-pro-card-title {
    color: #100190;
}

/* Tags */
.exu-pro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exu-pro-tags span {
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50px;
    background: #f8fafc;
    color: #4b5563;
    font-weight: 700;
    border: 1px solid #f1f5f9;
    transition: 0.3s ease;
}

/* Contrast Highlight Tag */
.exu-pro-highlight {
    background: #100190 !important;
    color: #ffffff !important;
    border-color: #100190 !important;
}

.exu-pro-card:hover .exu-pro-tags span:not(.exu-pro-highlight) {
    background: #ffffff;
    border-color: #10019022;
    color: #100190;
}

/* Responsive */
@media (max-width: 1200px) {
    .exu-pro-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .exu-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exu-pro-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .exu-pro-grid {
        grid-template-columns: 1fr;
    }

    .exu-pro-services {
        padding: 60px 0;
    }
}


/* -------------------------------------------------------
   TECHNOLOGY / WHY UK FIRMS LOVE US SECTION
   ------------------------------------------------------- */

/* Technology Section Styling */
.tech-outsourcing-section {
    padding: 80px 0;
    border-bottom: 4px solid #6ECEF6;
}

.btn-tech-cta {
    display: inline-block;
    background-color: #ff6600;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn-tech-cta:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4);
    color: #ffffff;
}

/* Specific highlight for brand name if needed */
.tech-outsourcing-section strong {
    color: #6ECEF6;
    font-weight: 700;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .tech-outsourcing-section {
        text-align: center;
        padding: 60px 0;
    }

    .btn-tech-cta {
        width: 100%;
        max-width: 300px;
    }
}


/* -------------------------------------------------------
   SOFTWARE EXPERTISE SECTION
   ------------------------------------------------------- */
.accordion-button:not(.collapsed)
/*-------------software-----------------*/

.software-expertise-section {
    padding: 60px 0;
    background: #ffffff;
}

.software-tagline {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.software-card {
    background: #ffffff;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 5px;
}

/* NEW CONTAINER FOR SAME SIZE LOGOS */
.software-logo-container {
    width: 100%;
    height: 50px;
    /* Sabka fixed space */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.software-logo {
    max-height: 100%;
    max-width: 85%;
    /* Logo width ko bhi control mein rakha hai */
    width: auto;
    object-fit: contain;
    /* Sabse important: stretches nahi hone dega */
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.4s ease;
}

.software-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: block;
    transition: all 0.3s ease;
}

.software-card:hover {
    border-color: var(--second-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.software-card:hover .software-logo {
    filter: grayscale(100%);
    opacity: 0.5;
}

.software-card:hover .software-name {
    color: #999;
}

.expert-note {
    font-size: 0.85rem;
    color: #777;
    background: #fdfdfd;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .software-card {
        height: 110px;
    }

    .software-logo-container {
        height: 40px;
    }
}

/*-------------------software end-------------------*/


/* -------------------------------------------------------
   TESTIMONIALS SECTION
   ------------------------------------------------------- */
.exu-testimonial-section {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.exu-tag {
    background: #FFD700;
    color: #100190;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}


/* Card Styling */
.exu-testi-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    margin: 20px 10px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.exu-active-card {
    border-top: 4px solid #100190;
    box-shadow: 0 15px 40px rgba(16, 1, 144, 0.1);
}

.exu-quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #cbd5e1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.exu-blue-quote {
    background: #100190;
}

.exu-testi-heading {
    color: #060b1a;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.exu-testi-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.exu-testi-footer strong {
    display: block;
    color: #100190;
    font-size: 0.9rem;
}

.exu-testi-footer span {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

/* Owl Dots Customization */
.owl-dots {
    margin-top: 30px !important;
}

.owl-dot span {
    background: #cbd5e1 !important;
}

.owl-dot.active span {
    background: #100190 !important;
}


/* -------------------------------------------------------
   TALENT / BUILD YOUR TEAM SECTION
   ------------------------------------------------------- */
.exu-talent-section {
    background: linear-gradient(135deg, #3F51B5, #5e75f5);
    padding: 50px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* GRID BACKGROUND */
.exu-talent-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    top: 0;
    left: 0;
}

/* HEADING */
.exu-heading {
    text-align: center;
    margin-bottom: 40px;
}

.exu-heading p {
    color: #6FE4FC;
    letter-spacing: 1px;
    font-weight: 600;
}


.exu-heading h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 5px 0;
}

.exu-heading h3 {
    font-size: 20px;
    color: #ccc;
}

.exu-heading span {
    color: #aaa;
    font-size: 14px;
}

/* SLIDER */
.exu-slider {
    overflow: hidden;
}

.exu-track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
}

/* CARD */
.exu-card {
    min-width: 280px;
    background: #fff;
    color: #000;
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
}

.exu-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.exu-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3F51B5;
    margin-bottom: 15px;
    font-size: 20px;
}

/* TEXT */
.exu-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.exu-card .level {
    display: inline-block;
    margin: 8px 0;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #e0e7ff;
    color: #3F51B5;
}

.exu-card p {
    font-size: 13px;
    color: #555;
}

/* SALARY */
.exu-card .salary {
    margin-top: 15px;
    font-weight: bold;
    color: #3F51B5;
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* -------------------------------------------------------
   LOCAL SEO SECTION
   ------------------------------------------------------- */

/* FONT & THEME INTEGRATION */
.exu-local-seo {
    padding: 100px 0;
    background: transparent;
}

.seo-tag {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.seo-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #060b1a;
    /* Brand Navy */
    margin-top: 15px;
    line-height: 1.2;
}

.text-city-dynamic {
    color: #2563eb;
    /* Brand Blue */
}

/* BODY CONTENT */
.seo-body-text {
    margin-top: 25px;
}

.lead {
    color: #475569;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.seo-features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
}

.seo-feat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.seo-feat-item i {
    font-size: 20px;
    color: #2563eb;
    margin-top: 5px;
}

.seo-feat-item h5 {
    color: #060b1a;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
}

.seo-feat-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.seo-local-brief {
    border-left: 3px solid #f26522;
    /* Brand Orange */
    padding-left: 20px;
    margin-top: 30px;
}

.seo-local-brief p {
    color: #475569;
    font-size: 15px;
    font-style: italic;
}

/* DYNAMIC ADVANTAGE CARD */
.seo-advantage-card {
    background: #060b1a;
    /* Brand Navy */
    padding: 45px;
    border-radius: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 10px;
    color: #69d3f9;
}

.card-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 15px;
}

.icon-wrap {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.card-footer-action {
    margin-top: auto;
    padding-top: 30px;
}

.card-footer-action p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.btn-seo-orange {
    display: block;
    background: #f26522;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.btn-seo-orange:hover {
    background: #d4541a;
}


/* -------------------------------------------------------
   FAQ SECTION
   ------------------------------------------------------- */

/* 1. LAYOUT & TYPOGRAPHY */
.exu-faq-minimal {
    padding: 50px 0;
    background: fff;
    /* Strictly no background color */
}

.text-accent {
    color: #2563eb;
}

/* Using brand blue for accent */

.exu-badge {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.exu-title {
    color: #000000;
    /* Deep Black for title visibility */
    font-size: 36px;
    font-weight: 800;
    margin-top: 15px;
}

.title-underline {
    width: 50px;
    height: 4px;
    background: #f26522;
    /* Brand orange accent */
    margin: 15px auto 45px;
}

/* 2. ACCORDION ITEMS */
.exu-faq-item {
    border-bottom: 1px solid #e2e8f0;
    /* Simple bottom border only */
    margin-bottom: 10px;
    transition: 0.3s;
}

.exu-faq-item:hover {
    border-bottom-color: #000000;
}

.exu-faq-question {
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    /* Pure Black text */
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
}

.exu-faq-question i {
    font-size: 14px;
    color: #64748b;
    transition: 0.4s ease;
}

.exu-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.exu-faq-answer p {
    padding: 0 10px 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 3. ACTIVE STATE */
.exu-faq-item.active .exu-faq-question {
    color: #f26522;
    /* Changes to brand orange when open */
}

.exu-faq-item.active i {
    transform: rotate(45deg);
    color: #f26522;
}


/* -------------------------------------------------------
   SEO DEEP DIVE / EXPANDABLE SECTION
   ------------------------------------------------------- */

/* 1. LAYOUT & TEXT FOUNDATION */
.exu-seo-deep-dive {
    padding: 80px 0;
    background: transparent;
    text-align: center;
    /* Centered content */
    position: relative;
    overflow: hidden;
}

.text-blue {
    color: #2563eb;
}

.seo-heading {
    color: #060b1a;
    /* Your Brand Navy */
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.seo-text-content p {
    color: #475569;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.seo-text-content h3 {
    color: #060b1a;
    font-weight: 800;
    font-size: 24px;
    margin: 40px 0 20px;
}

/* 2. EXPANSION LOGIC */
.seo-expandable-wrapper {
    position: relative;
    max-height: 450px;
    /* Limits initial height */
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-expandable-wrapper.active {
    max-height: 3000px;
    /* Large enough to show all content */
}

/* 3. THE FADE GRADIENT & BUTTON */
.seo-read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    /* Deep fade for a professional look */
    background: linear-gradient(to bottom, transparent, #ffffff 90%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    transition: 0.4s;
}

.seo-expandable-wrapper.active .seo-read-more-overlay {
    background: transparent;
    position: relative;
    height: 100px;
}

.btn-read-more {
    background: #060b1a;
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(6, 11, 26, 0.15);
}

.btn-read-more:hover {
    background: #f26522;
    /* Changes to brand orange on hover */
    transform: translateY(-3px);
}

.btn-read-more i {
    transition: 0.4s;
}

.seo-expandable-wrapper.active i {
    transform: rotate(180deg);
}


/* -------------------------------------------------------
   FIXED BOTTOM ACTION BAR
   ------------------------------------------------------- */

/* 1. THE MAIN STRIP CONTAINER */
.exu-fixed-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(6, 11, 26, 0.85);
    /* Your Brand Navy with Transparency */
    backdrop-filter: blur(15px);
    /* Premium Glassmorphism */
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

/* 2. THE BIG HIGHLIGHT (LEFT) */
.highlight-section {
    display: flex;
    flex-direction: column;
}

.live-indicator {
    font-size: 10px;
    font-weight: 800;
    color: #10b981;
    /* Green Urgency */
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.dot {
    height: 6px;
    width: 6px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse-green 2s infinite;
}

.main-cta-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.text-orange {
    color: #f26522;
    /* Your Brand Orange */
    text-shadow: 0 0 20px rgba(242, 101, 34, 0.3);
}

/* 3. BUTTONS GROUP (RIGHT) */
.action-buttons-group {
    display: flex;
    gap: 12px;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
}

/* Specific Button Colors */
.btn-whatsapp {
    background: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-meeting {
    background: #f26522;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.2);
}

.btn-email {
    background: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-action:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 4. ANIMATIONS & RESPONSIVENESS */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@media (max-width: 991px) {
    .exu-fixed-action-bar {
        height: auto;
        padding: 15px 0;
    }

    .container-fluid {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .main-cta-text {
        font-size: 18px;
    }

    .action-buttons-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-action span {
        display: none;
    }

    /* Show only icons on small mobile to save space */
    .btn-action {
        padding: 12px 20px;
    }
}


/* -------------------------------------------------------
   USA / DEDICATED OFFSHORE FINANCE SECTION
   ------------------------------------------------------- */

/* 1. SECTION & TYPOGRAPHY */
.exu-usa-services {
    padding: 100px 0;
    background: transparent;
}

.exu-global-badge {
    color: #2563eb;
    /* Brand Blue */
    background: rgba(37, 99, 235, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.exu-section-lead {
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* 2. SERVICE CARDS */
.exu-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s ease;
}

.exu-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 11, 26, 0.05);
    border-color: #2563eb;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.05);
    color: #2563eb;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.exu-service-card h4 {
    color: #060b1a;
    font-weight: 800;
    margin-bottom: 15px;
}

.exu-service-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #060b1a;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

.service-list li i {
    color: #10b981;
    /* Success Green */
    font-size: 12px;
}

/* 3. DEDICATED BANNER */
.exu-dedicated-banner {
    background: #060b1a;
    /* Deep Navy */
    padding: 40px 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #ffffff;
}

.banner-icon {
    font-size: 40px;
    color: #69d3f9;
}

.banner-content h3 {
    font-weight: 800;
    margin-bottom: 5px;
}

.banner-content p {
    opacity: 0.7;
    margin: 0;
    font-size: 15px;
    max-width: 500px;
}

.btn-usa-cta {
    background: #f26522;
    /* Brand Orange */
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-usa-cta:hover {
    background: #d4541a;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .exu-dedicated-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .banner-content {
        flex-direction: column;
    }
}


/* -------------------------------------------------------
   LEAD MODAL
   ------------------------------------------------------- */

/* 1. OVERLAY & CONTAINER */
.exu-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 11, 26, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.exu-modal-content {
    background: #fff;
    width: 90%;
    max-width: 950px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* 2. LEFT SIDE */
.modal-left {
    padding: 50px;
    background: #fff;
    border-right: 1px solid #f1f5f9;
}

.modal-title {
    font-weight: 900;
    font-size: 34px;
    color: #060b1a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.modal-subtitle {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.small-tag {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    margin-top: 30px;
    letter-spacing: 1px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-icon {
    width: 35px;
    height: 35px;
    background: #100190;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.benefit-item span {
    font-weight: 700;
    color: #475569;
}

.modal-footer-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    gap: 20px;
}

/* 3. RIGHT SIDE */
.modal-right {
    padding: 50px;
    background: #f8fafc;
}

.modal-right h3 {
    font-weight: 800;
    color: #060b1a;
}

.modal-right p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

.input-group-custom {
    position: relative;
    margin-bottom: 15px;
}

.input-group-custom i {
    position: absolute;
    left: 15px;
    top: 18px;
    color: #94a3b8;
}

.input-group-custom input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.input-group-custom input:focus {
    border-color: #100190;
    outline: none;
    box-shadow: 0 0 0 4px rgba(16, 1, 144, 0.1);
}

.btn-schedule {
    width: 100%;
    background: #100190;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-schedule:hover {
    background: #f26522;
}

.contact-us-link {
    text-align: right;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 800;
    color: #100190;
    cursor: pointer;
}

@media (max-width: 768px) {

    .modal-left,
    .modal-right {
        padding: 30px;
    }
}


/* -------------------------------------------------------
   OTHER OUTSOURCING SERVICES PILLS SECTION
   ------------------------------------------------------- */
.exu-services-pills-section {
    padding: 80px 0;
    background-color: #f8fafc; 
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.services-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 15px; /* Vertical and Horizontal spacing */
    max-width: 1200px;
    margin: 0 auto;
}

.services-pills-container .service-pill a{
    text-decoration: none;
    color: #000;
}
.services-pills-container .service-pill a:hover{
    text-decoration: underline;
}
.service-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px; /* Makes it a pill shape */
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    cursor: default;
}

.service-pill i {
    color: #0f172a; /* Dark navy icon color */
    margin-right: 10px;
    font-size: 14px;
}

.service-pill:hover {
    border-color: #2563eb; /* Your brand blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .service-pill {
        font-size: 13px;
        padding: 6px 15px;
    }
    
    .hiring-levels-title {
        font-size: 1.5rem;
    }
}
