/* =========================================
   Base Styles & Animated Background
   ========================================= */


@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, rgba(124,33,112,0.3) 0%, rgba(124,33,112,0) 70%);
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(82,16,72,0.25) 0%, rgba(82,16,72,0) 70%);
}

.hero-glow-3 {
    width: 450px;
    height: 450px;
    bottom: -200px;
    left: 40%;
    background: radial-gradient(circle, rgba(180,70,150,0.2) 0%, rgba(180,70,150,0) 70%);
}

@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
        background-position: 0% 50%;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-breadcrumb-wrap {
    text-align: left;
    margin-bottom: 56px;
}

.hero-breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
}

.hero-breadcrumb .breadcrumb-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #8a7288;
}

.hero-breadcrumb .breadcrumb-item a {
    color: #8a7288;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: #521048;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: #521048;
    font-weight: 600;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(82,16,72,0.35);
    padding: 0 8px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #521048;
    background: rgba(82,16,72,0.08);
    border: 1px solid rgba(82,16,72,0.18);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #521048;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    color: #2b0d27;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-highlight {
    background: linear-gradient(90deg, #521048 0%, #7c2170 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: #6c586a;
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.btn-custom {
    font-weight: 600;
    padding: 12px 35px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-orange {
    background: linear-gradient(135deg, #521048 0%, #6e1a60 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 24px -10px rgba(82,16,72,0.55);
}

.btn-orange:hover {
    background: linear-gradient(135deg, #400d38 0%, #521048 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px -8px rgba(82,16,72,0.65);
}

.btn-dark-custom {
    background-color: transparent;
    color: #521048;
    border: 1.5px solid #521048;
}

.btn-dark-custom:hover {
    background-color: #521048;
    color: #ffffff;
}

.logo-grid {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    row-gap: 35px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 36px;
    border-top: 1px solid rgba(82,16,72,0.14);
}

.logo-grid img {
    max-height: 40px;
    max-width: 140px;
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
    min-width: 80px;
    min-height: 20px;
    filter: grayscale(100%);
}

.logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========================================
   Bulk Links Section
   ========================================= */
.bulk-links-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7ecf454 55%, #f9f1f6 100%);
    padding: 90px 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.bulk-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.bulk-glow-1 {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    background:white;
    /*background: radial-gradient(circle, rgba(82,16,72,0.16) 0%, rgba(82,16,72,0) 70%);*/
}

.bulk-glow-2 {
    width: 380px;
    height: 380px;
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(124,33,112,0.14) 0%, rgba(124,33,112,0) 70%);
}

.bulk-links-section .container {
    position: relative;
    z-index: 1;
}

.bulk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #521048;
    background: rgba(82,16,72,0.08);
    border: 1px solid rgba(82,16,72,0.18);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.bulk-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #521048;
}

.bulk-title {
    color: #0b1a3c;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.bulk-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.feature-card {
    border: 1px solid #f0e4ee;
    border-radius: 14px;
    padding: 40px 30px;
    height: 100%;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    box-shadow: 0 18px 38px rgba(82,16,72,0.10);
    transform: translateY(-3px);
    border-color: rgba(82,16,72,0.22);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(82,16,72,0.10) 0%, rgba(124,33,112,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-card h5 {
    color: #0b1a3c;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   Ideal Scenarios for Bulk Links
   ========================================= */
.scenarios-section {
    background: linear-gradient(180deg, #fbf5f9 0%, #f6ebf2 100%);
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(82,16,72,0.08);
    border-bottom: 1px solid rgba(82,16,72,0.08);
}

.scenarios-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #521048;
    background: rgba(82,16,72,0.08);
    border: 1px solid rgba(82,16,72,0.18);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.scenarios-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #521048;
}

.scenario-card {
    border: 1px solid #efe3ec;
    border-radius: 12px;
    padding: 28px 26px;
    height: 100%;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.scenario-card:hover {
    box-shadow: 0 15px 32px rgba(82,16,72,0.10);
    transform: translateY(-3px);
    border-color: rgba(82,16,72,0.25);
}

.scenario-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(82,16,72,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.scenario-icon-box svg {
    width: 22px;
    height: 22px;
    stroke: #521048;
    fill: none;
    stroke-width: 1.8;
}

.scenario-card h6 {
    color: #0b1a3c;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.scenario-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* =========================================
   HR Features Grid Section
   ========================================= */
.hr-features-section {
    background-color: #ffffff;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.hr-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hr-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.hr-card-top {
    background-color: #ffffff;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hr-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hr-icon-box svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    stroke: #ffffff;
    fill: none;
}

.hr-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
}

.hr-card-bottom {
    padding: 20px 24px 24px;
    flex-grow: 1;
}

.hr-card-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Color Themes for HR Cards */
.theme-cyan .hr-icon-box { background-color: #00cbf7; }
.theme-cyan .hr-card-bottom { background-color: #eafbfd; }

.theme-orange .hr-icon-box { background-color: #ff9800; }
.theme-orange .hr-card-bottom { background-color: #fff9ed; }

.theme-green .hr-icon-box { background-color: #4bd29a; }
.theme-green .hr-card-bottom { background-color: #eefaf4; }

.theme-purple .hr-icon-box { background-color: #aa00ff; }
.theme-purple .hr-card-bottom { background-color: #fae8ff; }

/* Central Image styling */
.hr-image-center {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hr-image-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
   background: linear-gradient(180deg, #f9f6f875 0%, #f3ebf154 100%);
    padding: 80px 20px 90px;
    position: relative;
    z-index: 2;
}

.faq-title {
    color: #0b1a3c;
    font-weight: 700;
    font-size: 2.1rem;
    margin-bottom: 45px;
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: 1px solid #efe3ec;
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.98rem;
    color: #0b1a3c;
    padding: 20px 24px;
    box-shadow: none;
    background-color: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #521048;
    /*background-color: #fdf7fb;*/
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Custom plus / minus indicator, replaces the default Bootstrap chevron */
.faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.3rem;
    font-weight: 400;
    color: #521048;
    width: auto;
    height: auto;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\2212"; /* minus sign */
}

.faq-accordion .accordion-body {
    padding: 4px 24px 22px;
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.7;
    /*background-color: #fdf7fb;*/
}

/* =========================================
   Scroll reveal animation (shared across sections)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 767.98px) {
    .client-logo{
        max-height:80px !important;
    }
    .logo-card{
        padding:0px !important;
    }
    
    .hero-title { font-size: 2.4rem; }
    .hero-glow-1, .hero-glow-2, .hero-glow-3 { filter: blur(60px); }
    .bulk-glow-1, .bulk-glow-2 { filter: blur(55px); }
    .bulk-title { font-size: 1.8rem; }
    .faq-title { font-size: 1.7rem; }
}

@media (max-width: 420px) {
    .hero-section .d-flex.gap-3 {
        flex-wrap: wrap;
    }
    .btn-custom {
        padding: 11px 24px;
        font-size: 0.92rem;
    }
}


   /* --- CTA Section --- */
        .cta-section {
            background-color: #ffffff;
            padding-bottom: 80px;
        }

        .cta-box {
            background-color: #10000e;
  background-image: 
    radial-gradient(at 90% 10%, #b54a9d 0px, transparent 50%),
    radial-gradient(at 30% 40%, #5d0a4f 0px, transparent 60%),
    radial-gradient(at 0% 100%, #000000 0px, transparent 50%),
    radial-gradient(at 80% 80%, #31002c 0px, transparent 50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
            border-radius: 20px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
            padding-right: 0px;
            
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.3;
            pointer-events: none;
        }

        .cta-title {
            color: #ffffff;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

        .cta-btn {
            background-color: #ffffff;
            color: #0b1528;
            padding: 12px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .cta-btn:hover {
            background-color: #f1f5f9;
            color: #0b1528;
            transform: scale(1.02);
        }

        .cta-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .cta-features li {
            color: #e2e8f0;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .cta-features svg {
            width: 16px;
            height: 16px;
            fill: #ffffff;
        }

        .cta-illustration-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-title { font-size: 1.8rem; }
            .stat-number { font-size: 2.2rem; }
            .cta-box { padding: 40px 30px; text-align: center; }
            .cta-features { justify-content: center; }
            .cta-title { font-size: 2rem; }
            .cta-illustration-container { margin-top: 40px; }
        }
        
        
        
        
        .custom-gradient-border {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    /* Purple gradient fading out on the edges */
    background: linear-gradient(90deg, transparent 0%, rgba(168, 85, 247, 0.4) 50%, transparent 100%);
}

/* Typography Customization */
.custom-tracking {
    letter-spacing: 0.2em;
    font-size: 0.75rem;
}

/* Logo Card Wrapper */
.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: transparent;
    text-decoration: none;
    /* Smooth transition for the JS release state */
    transition: transform 0.4s ease-out, background 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

/* Image Styling */
.client-logo {
    max-height: 45px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

/* Base Hover Effects (Fallback for JS) */
.logo-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1); /* Subtle purple glow */
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.logo-card:hover .client-logo {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}
