  /*---------------outsourced-finance-team page ---------------------*/
/*----------first section section -------------*/
.identity-qualifier-section {
    background-color: #ffffff;
    position: relative;
}

/* Audience Tag with Gold Accents */
.audience-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tag-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #5e75f5; /* Brand Vibrant Blue */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tag-line {
    width: 30px;
    height: 2px;
    background-color: var(--greenColor); /* Brand Gold */
}

/* Typography */
.identity-heading {
    font-size: 3rem;
    color: var(--navy); /* Brand Navy */
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.brand-gradient-text {
    background: linear-gradient(90deg, var(--navy-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.identity-lead {
    font-size: 1.25rem;
    color: #475467;
    max-width: 800px;
    line-height: 1.7;
}

.identity-lead strong {
    color: var(--navy);
    font-weight: 700;
}

/* Features Row */
.identity-features-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.id-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.id-icon-circle {
    width: 50px;
    height: 50px;
    background: #f4f7ff;
    color: #5e75f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #e0e7ff;
}

.id-feature h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.id-divider {
    width: 1px;
    height: 40px;
    background-color: #eee;
}

/* Responsive */
@media (max-width: 991px) {
    .identity-heading { font-size: 2.2rem; }
    .id-divider { display: none; }
    .identity-features-row { gap: 40px; }
}


.ticker-container {
    background: var(--navy-dark);
    padding: 60px 0 0px 0;
    position: relative;
    overflow: hidden;
}

.ticker-label-wrapper {
    text-align: center;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 10;
}

.ticker-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5e75f5;
    background: #ffffff;
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 44, 96, 0.08);
    border: 1px solid rgba(94, 117, 245, 0.2);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    margin-bottom: 40px;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 50s linear infinite;
}

.ticker-card {
    background: #ffffff;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.ticker-card.highlight {
    border: 1px solid #5e75f5;
    color: #5e75f5;
    background: rgba(94, 117, 245, 0.05);
}

/* CTA Styles */
.ticker-cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-ticker-cta {
    display: inline-block;
    background: #5e75f5;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 44, 96, 0.15);
}

.btn-ticker-cta:hover {   
    background: var(--navy);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(94, 117, 245, 0.3);
}

.ticker-subtext {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .ticker-card { font-size: 0.85rem; padding: 8px 15px; }
    .btn-ticker-cta { padding: 12px 30px; font-size: 0.9rem; }
}

/*-----------first section end-----------*/

/*-------------service section------------*/
.elite-infrastructure {
    background-color: #f8f9fc;
    padding: 50px 0;
}

.service-tag {
    color: #3b82f6;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}



.accent-text {
    color: #3b82f6;
}

.section-lead {
    color: #64748b;
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.1rem;
}

/* Service Node Styling */
.service-node {
    background: #ffffff;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-node:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.08);
    transform: translateY(-3px);
}

.node-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.service-node:hover .node-icon {
    background: #3b82f6;
    color: #ffffff;
}

.node-body h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.node-body span {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 991px) {
    .section-title { font-size: 2rem; }
    .service-node { padding: 16px; }
}
/*-------------service section end------------*/

/*---------hiring talent profile section-----------*/


/* Logic for 5 columns in a standard container */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.talent-roster-section { background-color: var(--navy-dark); }

.roster-badge {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 10px;
}

.roster-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.roster-title .text-blue { color: #5e75f5; }

.roster-desc {
    color: #64748b;
    font-size: 0.95rem;
    border-left: 3px solid var(--greenColor);
    padding-left: 20px;
    line-height: 1.6;
}

.talent-card {
    background: #fbfbfc;
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid #edf2f7;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.talent-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 44, 96, 0.08);
    border-color: #5e75f5;
}

.talent-icon-box {
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #5e75f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.talent-role {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.talent-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 15px;
}

.hire-now-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #5e75f5;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hire-now-link:hover { color: var(--navy); }

.highlight-card {
    border: 1px solid #5e75f5;
    background: #f4f7ff;
}

.contact-card {
    background: var(--navy);
    color: #ffffff;
    justify-content: center;
    text-align: center;
}

.contact-card h4 { font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.contact-card p { color: #cbd5e1; font-size: 0.8rem; }
.contact-card:hover h4, .contact-card:hover p, .contact-card:hover a{color: black}

@media (max-width: 991px) {
    .roster-title { font-size: 1.8rem; }
    .roster-desc { border: none; padding-left: 0; margin-top: 15px; }
}

.engagement-strip {
    background: var(--navy);
    padding: 20px 0;
    border-bottom: 4px solid var(--greenColor);
}
.model-item {
    color: #ffffff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.model-dot {
    width: 8px;
    height: 8px;
    background: var(--greenColor);
    border-radius: 50%;
}
.text-gold { color: var(--greenColor); }

/*------------hiring talent profile section end------------*/

/*-----------content section---------*/
.finance-definition-section-centered {
    background-color: #ffffff; /* Clean White for an open feel */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Typography Enhancements */
.ultra-h2 {
    font-size: 3rem;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.text-gradient-gold {
    background: linear-gradient(90deg, var(--navy-dark), #0ebc40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-tag {
    background: rgba(94, 117, 245, 0.1);
    color: var(--navy-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.premium-p-large {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
}

.premium-p-large strong {
    color: var(--navy);
}

/* Centered Decorative Elements */
.accent-line-center {
    width: 80px;
    height: 4px;
    background-color: #0ebc40;
    border-radius: 2px;
}

/* Why Us Block - Soft UI */
.why-us-glass {
    margin-top: 60px;
    padding: 50px;
    background: #fbfbfc;
    border: 1px solid #eee;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.why-us-glass:hover {
    transform: translateY(-5px);
}

.premium-h3-alt {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
}

.cta-text-muted {
    font-size: 1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Button Styling */
.btn-outline-gold {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #0ebc40;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #0ebc40;
    color: #fff;
    box-shadow: 0 10px 20px rgba(253, 200, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ultra-h2 { font-size: 2.5rem; }
    .premium-p-large { font-size: 1.15rem; }
    .why-us-glass { padding: 30px 20px; }
}
/*------------content section end----------*/

/*-------------cta section email---------*/
  
.ex-cta-query-section {
    background-color: #ffffff !important;
    padding: 0px 0 !important;
}

.ex-cta-card-wrapper {
    background: var(--navy) !important; /* Brand Navy */
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px rgba(0, 44, 96, 0.15) !important;
}


.ex-cta-content-side {
    padding: 60px !important;
    color: #ffffff !important;
}

.ex-cta-form-side {
    background: #ffffff !important;
    padding: 60px !important;
    height: 100% !important;
}


.ex-cta-mini-label {
    color: var(--greenColor) !important; /* Brand Gold */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 0.8rem !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.ex-cta-heading {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.ex-cta-blue-accent { color: #6ecef6 !important; }

.ex-cta-subtext {
    font-size: 1.1rem !important;
    color: #d1d5db !important;
    margin-top: 20px !important;
}

.ex-cta-navy-text { color: var(--navy) !important; font-weight: 800 !important; }
.ex-cta-muted-text { color: #64748b !important; font-size: 0.9rem !important; }


.ex-cta-benefits-row {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 30px !important;
}

.ex-cta-benefit-item {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.ex-cta-gold { color: var(--greenColor) !important; }


.ex-cta-input-group {
    display: flex !important;
    width: 100% !important;
    align-items: stretch !important; /* Forces button and input to same height */
}

.ex-cta-pro-input {
    flex-grow: 1 !important;
    border-radius: 50px 0 0 50px !important;
    padding: 15px 25px !important;
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    font-size: 1rem !important;
    outline: none !important;
    box-shadow: none !important;
}

.ex-cta-btn-gradient {
    background: linear-gradient(90deg, #5e75f5, #6ecef6) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 50px 50px 0 !important;
    padding: 0 30px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ex-cta-btn-gradient:hover {
    filter: brightness(1.1) !important;
}

.ex-cta-phone-link {
    font-size: 1.2rem !important;
    color: var(--navy) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.ex-cta-phone-link:hover { color: #5e75f5 !important; }

/* Mobile Fixes */
@media (max-width: 991px) {
    .ex-cta-content-side, .ex-cta-form-side { padding: 40px 20px !important; }
    .ex-cta-heading { font-size: 1.8rem !important; }
    .ex-cta-input-group { flex-direction: column !important; gap: 10px !important; }
    .ex-cta-pro-input, .ex-cta-btn-gradient { border-radius: 50px !important; padding: 15px !important; }
}
/*-------------cta section email end---------*/

.trust-staggered-section {
    background-color: #f8f9fc;
    padding: 50px 0;
}

.trust-badge {
    color: #5e75f5;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.trust-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 10px;
}

.trust-sub {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Story Card Base */
.story-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    position: relative;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 44, 96, 0.05);
    border-color: #5e75f5;
}

.story-primary {
    background: var(--navy);
}

.story-primary .story-quote, .story-primary .story-author h6 {
    color: #ffffff;
}

.story-primary .story-author span {
    color: #a0aec0;
}

/* Meta Elements */
.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.story-logo {
    height: 30px;
    opacity: 0.8;
}

.story-stars {
    color: var(--greenColor);
    font-weight: 800;
    font-size: 0.9rem;
}

.story-quote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #334155;
    font-weight: 400;
    margin-bottom: 25px;
}

.small-quote {
    font-size: 1rem;
}

.story-accent {
    border-left: 5px solid var(--greenColor);
}

.story-verified {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00c853;
    text-transform: uppercase;
}

/* Author Details */
.story-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
}

.story-author span {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Wide Card Adjustments */
@media (min-width: 768px) {
    .border-start-md { border-left: 1px solid #edf2f7; }
    .story-wide { padding: 50px; }
}

@media (max-width: 991px) {
    .trust-heading { font-size: 2.2rem; }
}

    .elite-contact-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.elite-contact-container {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 44, 96, 0.08);
    border: 1px solid #eef2f6;
}

/* Info Side (Navy) */
.elite-contact-info {
    background: var(--navy);
    padding: 60px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.info-tag {
    color: var(--sky-blue);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.text-gold { color: var(--sky-blue); }

.info-text {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.method-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-blue);
}

/* Form Side (White) */
.elite-contact-form-side {
    padding: 60px;
}

.elite-label {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.elite-input {
    width: 100%;
    padding: 12px 20px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
}

.elite-input:focus {
    background: #ffffff;
    border-color: #5e75f5;
    outline: none;
    box-shadow: 0 0 0 4px rgba(94, 117, 245, 0.1);
}

.elite-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #5e75f5, #6ecef6);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.elite-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(94, 117, 245, 0.2);
}

@media (max-width: 991px) {
    .elite-contact-info, .elite-contact-form-side { padding: 40px 30px; }
}

/*-----governace you can bank-------*/
.governance-section {
    background-color: #fcfdfe;
    padding: 120px 0;
}

.governance-visual-wrapper {
    position: relative;
    padding: 40px;
}

.governance-main-box {
    background: var(--navy);
    padding: 60px 40px;
    border-radius: 24px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 44, 96, 0.12);
}

.governance-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.05);
}

.governance-accent-line {
    width: 60px;
    height: 4px;
    background: #fdc800;
    margin-bottom: 25px;
}

.governance-inner-h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.stat-overlay-card {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 2;
    text-align: center;
    border-bottom: 4px solid #fdc800;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
}

/* Right Side Content */
.gold-subtitle {
    color: #fdc800;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.section-title-navy {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
}

.pillar-item {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.pillar-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: #f0f4ff;
    color: #5e75f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.pillar-text h5 {
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.pillar-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .section-title-navy { font-size: 2.2rem; }
    .governance-visual-wrapper { margin-bottom: 60px; padding: 20px; }
}
/*-----governace you can bank-------*/

/*------------industries section-------------*/

.industry-section {
    background-color: var(--navy-dark);
}

.industry-tile {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 44, 96, 0.1);
    border-color: #5e75f5;
}

.highlight-tile {
    background: #f4f7ff;
    border: 1px solid rgba(94, 117, 245, 0.3);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: #f0f4ff;
    color: #5e75f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.industry-tile h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.industry-tile p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-list li {
    font-size: 0.7rem;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.highlight-tile .industry-list li {
    background: #5e75f5;
    color: #ffffff;
    border: none;
}

@media (max-width: 991px) {
    .industry-tile { padding: 25px; }
}
/*----------------industries section end---------*/

/*-----------comparisoin section----------*/
.comparison-section {
  background-color: #f8f9fc;
}

.comp-badge {
    color: #5e75f5;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.comp-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
}

.comp-title .text-blue { color: #5e75f5; }

.comp-subtitle {
    max-width: 600px;
    color: #64748b;
}

/* Card Styling */
.comp-card {
    padding: 50px 40px;
    border-radius: 30px;
    height: 100%;
    position: relative;
    border: 1px solid #eef2f6;
    transition: 0.3s ease;
}

.traditional {
    background: #fbfbfc;
}

.exuberant-premium {
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 44, 96, 0.15);
    border: none;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 40px;
    background: #fdc800;
    color: var(--navy);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.comp-card-header h4 {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.exuberant-premium .comp-card-header p { color: #cbd5e1; }
.traditional .comp-card-header h4 { color: var(--navy); }

/* List Styling */
.comp-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.comp-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.exuberant-premium .comp-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comp-list i { font-size: 1.1rem; }

.comp-cta {
    background: #fdc800;
    color: var(--navy);
    font-weight: 800;
    border-radius: 50px;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .exuberant-premium { transform: scale(1); margin-top: 20px; }
    .comp-title { font-size: 2.2rem; }
}
/*-----------comparison section end-----------*/

/*-------------- book a meeting button---------------------*/
.fixed-book-btn-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.book-btn-fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--greenColor, #28a745);
  color: white !important;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: visible;
}

.book-btn-fixed .btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.book-btn-fixed i {
  font-size: 20px;
}

.book-btn-fixed:hover {
  transform: scale(1.05) translateY(-5px);
  background: var(--titleColor, #1a1a1a);
  color: #fff !important;
}

/* --- Eye-Catching Pulse Animation --- */
.pulse-ring {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--greenColor, #28a745);
  border-radius: 50px;
  z-index: 1;
  animation: btnPulse 2s infinite;
  opacity: 0.6;
}

.pulse-ring.delay {
  animation-delay: 0.5s;
}

@keyframes btnPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* --- Mobile Responsive Fix --- */
@media (max-width: 768px) {
  .fixed-book-btn-wrapper {
    bottom: 20px;
    right: 20px;
  }
  .book-btn-fixed {
    padding: 12px 20px;
    font-size: 14px;
  }
  .book-btn-fixed span {
    display: none; 
  }
  .book-btn-fixed i {
    margin: 0;
  }
}
/*--------------- book a meeting button end---------------------*/

/*---------------outsourced-finance-team page footer book a meeting button end---------------------*/