/* CSS Variables */
        :root {
            --navy: #0F1B35;
            --navy2: #1A2F55;
            --orange: #FF5A1F;
            --orange-h: #E04A10;
            --blue: #1B5EEA;
            --blue-d: #0040C0;
            --blue-l: #EEF3FF;
            --green: #16A34A;
            --purple: #7C3AED;
            --bg: #F6F8FF;
            --white: #fff;
            --text: #1A1A2E;
            --muted: #6B7280;
            --border: #E4E8F0;
            --r: 12px;
        }

        /* Reset & Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
            font-size: 16px;
            font-weight: 400;
        }

        /* Animations */
        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,90,31,.35); } 70% { box-shadow: 0 0 0 14px rgba(255,90,31,0); } }
        @keyframes gradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
        @keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
        @keyframes slideRight { from { width: 0; } to { width: 100%; } }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
        @keyframes shimmer { 0% { background-position: -200% 50%; } 100% { background-position: 200% 50%; } }

        .fade-up { opacity: 0; }
        .anim-fade-up { animation: fadeUp .7s ease both; }
        .anim-fade-up-2 { animation: fadeUp .7s .15s ease both; }
        .anim-fade-up-3 { animation: fadeUp .7s .3s ease both; }
        .anim-scale { animation: scaleIn .6s ease both; }

        /* Announce Bar */
        .announce{background:linear-gradient(90deg,var(--navy),#0A2A70,var(--navy));background-size:200% 100%;animation:gradient 6s ease infinite;color:#fff;text-align:center;padding:11px 24px;font-size:13.5px;font-weight:500;position:relative;overflow:hidden}
        .announce::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.06) 50%,transparent 100%);animation:slideRight 2s ease infinite}
        .announce a{color:var(--orange);font-weight:800;margin-left:6px}
        .announce a:hover{text-decoration:underline}

        

        /* Container */
        .container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

        /* Section */
        section { padding: 80px 0; }
        .section-light { background: var(--bg); }
        .section-white { background: var(--white); }

        /* Badge */
        .badge { display: inline-block; background: var(--blue-l); color: var(--blue); padding: 8px 16px; border-radius: 100px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
        .badge-purple { background: #F3E8FF; color: #7C3AED; }

        /* Headings */
        h1 { font-size: 56px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--text); }
        h2 { font-size: 42px; font-weight: 800; line-height: 1.25; margin-bottom: 24px; color: var(--text); }
        h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
        p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
        .text-muted { color: var(--muted); }

        /* Hero Section */
        .hero { background: linear-gradient(135deg, var(--navy) 0%, #12265E 55%, #0A1F50 100%); color: var(--white); padding: 100px 0; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 60px 60px; }
        .hero::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
        .hero-content { position: relative; z-index: 2; }
        .hero-pretag { font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--purple); margin-bottom: 16px; letter-spacing: 1px; }
        .hero h1 { color: var(--white); margin-bottom: 20px; }
        .hero h1 .highlight { color: var(--purple); }
        .hero-subtitle { font-size: 20px; color: rgba(255, 255, 255, 0.9); font-weight: 600; margin-bottom: 24px; max-width: 800px; }
        .hero-body { font-size: 16px; color: rgba(255, 255, 255, 0.85); line-height: 1.7; max-width: 700px; margin-bottom: 36px; }
        .hero-ctas { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
        .hero-partners { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-top: 40px; }
        .partner-pill { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); padding: 8px 16px; border-radius: 100px; font-size: 13px; color: rgba(255, 255, 255, 0.8); font-weight: 600; transition: all .22s; }
        .partner-pill:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }

        /* Stats Strip */
        .stats-strip { background: linear-gradient(135deg, var(--purple) 0%, #A78BFA 100%); color: var(--white); padding: 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
        .stat-item { padding: 32px 16px; border-right: 1px solid rgba(255,255,255,.2); }
        .stat-item:last-child { border-right: none; }
        .stat-num { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 4px; }
        .stat-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin: 0; }

        /* Problem Section */
        .problem-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
        .problem-card { background: var(--white); padding: 28px; border-radius: 14px; border: 1px solid var(--border); transition: all .28s; position: relative; overflow: hidden; }
        .problem-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.03) 0%, rgba(124,58,237,.01) 100%); opacity: 0; transition: opacity .3s; }
        .problem-card:hover { transform: translateY(-5px); border-color: var(--purple); box-shadow: 0 16px 44px rgba(124, 58, 237, 0.12); }
        .problem-card:hover::before { opacity: 1; }
        .problem-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; transition: transform .25s; }
        .problem-card:hover .problem-icon { transform: scale(1.12); }
        .problem-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 17px; }
        .problem-card p { color: var(--muted); margin-bottom: 0; font-size: 14px; position: relative; }

        /* Feature Items */
        .feature-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
        .feature-item { display: flex; gap: 16px; padding: 22px; border-radius: 14px; border: 1px solid var(--border); background: var(--white); transition: all .25s; position: relative; }
        .section-light .feature-item { background: var(--white); }
        .section-white .feature-item { background: var(--bg); }
        .feature-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,27,53,.1); border-color: transparent; }
        .feature-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: transform .25s; }
        .feature-item:hover .feature-icon { transform: scale(1.12); }

        /* Icon color variants */
        .ic-blue { background: #EEF3FF; color: #1B5EEA; }
        .ic-orange { background: #FFF0EB; color: #FF5A1F; }
        .ic-green { background: #F0FDF4; color: #16A34A; }
        .ic-purple { background: #F3E8FF; color: #7C3AED; }
        .ic-red { background: #FEF2F2; color: #DC2626; }
        .ic-teal { background: #F0FDFA; color: #0D9488; }

        .feature-content h3 { margin-top: 0; margin-bottom: 6px; font-size: 15px; font-weight: 800; color: var(--navy); }
        .feature-content p { margin-bottom: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

        /* Result Callout */
        .result-callout { background: linear-gradient(135deg, var(--blue-l) 0%, rgba(27, 94, 234, 0.05) 100%); border-left: 4px solid var(--blue); padding: 24px; border-radius: var(--r); margin-top: 32px; font-weight: 600; color: var(--navy); }
        .result-callout-purple { background: linear-gradient(135deg, #F3E8FF 0%, rgba(124,58,237,.05) 100%); border-left: 4px solid var(--purple); }

        /* Dashboard Feature */
        .dashboard-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
        .dashboard-item { background: var(--white); padding: 26px; border-radius: 14px; border: 1px solid var(--border); transition: all .25s; }
        .section-light .dashboard-item { background: var(--white); }
        .dashboard-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,27,53,.1); border-color: transparent; }
        .dash-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; transition: transform .25s; }
        .dashboard-item:hover .dash-icon { transform: scale(1.12); }
        .dashboard-item h4 { color: var(--navy); font-size: 15px; font-weight: 800; margin-bottom: 8px; }
        .dashboard-item p { color: var(--muted); margin-bottom: 0; font-size: 13.5px; line-height: 1.6; }

        /* Ideal For Cards */
        .ideal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
        .ideal-card { background: var(--white); border: 1px solid var(--border); padding: 32px 24px; border-radius: 16px; text-align: center; transition: all .28s; position: relative; overflow: hidden; }
        .ideal-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,.03) 0%, rgba(255,90,31,.03) 100%); opacity: 0; transition: opacity .3s; }
        .ideal-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(15,27,53,.12); border-color: transparent; }
        .ideal-card:hover::before { opacity: 1; }
        .ideal-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 14px; transition: transform .25s; }
        .ideal-card:hover .ideal-icon { transform: scale(1.12); }
        .ideal-card h3 { color: var(--navy); font-size: 16px; font-weight: 800; margin-bottom: 8px; position: relative; }
        .ideal-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 0; position: relative; line-height: 1.6; }

        /* Flow Steps */
        .flow-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
        .flow-step { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all .28s; position: relative; }
        .flow-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--purple), #A78BFA); border-radius: 16px 16px 0 0; }
        .flow-step:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(15,27,53,.1); border-color: transparent; }
        .flow-step-num { width: 48px; height: 48px; border-radius: 50%; background: #F3E8FF; color: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; margin: 0 auto 16px; transition: transform .25s; }
        .flow-step:hover .flow-step-num { transform: scale(1.12); background: var(--purple); color: #fff; }
        .flow-step h3 { color: var(--navy); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
        .flow-step p { color: var(--muted); font-size: 13.5px; margin-bottom: 0; line-height: 1.6; }

        /* FAQ */
        .faq-items { max-width: 800px; margin: 36px auto 0; }
        .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 16px; overflow: hidden; }
        .section-light .faq-item { background: var(--white); }
        .faq-question { padding: 20px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 600; color: var(--navy); transition: background 0.2s; }
        .faq-item:hover .faq-question { background: var(--bg); }
        .faq-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; color: var(--orange); }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--muted); }
        .faq-item.active .faq-answer { padding: 0 20px 20px 20px; max-height: 500px; }

        /* CTA Banner */
        .cta-banner { background: linear-gradient(135deg, var(--purple) 0%, #A78BFA 100%); color: var(--white); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
        .cta-banner::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.08); top: -250px; left: -100px; }
        .cta-banner::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.06); bottom: -150px; right: -50px; }
        .cta-banner .container { position: relative; z-index: 2; }
        .cta-banner h2 { color: var(--white); margin-bottom: 12px; }
        .cta-banner p { color: rgba(255,255,255,.9); font-size: 18px; margin-bottom: 32px; }
        .cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        
        
         .page-returns-management .container {
    max-width: 100%;
}

.page-returns-management .container div#content {
    padding-top: 0;
}

.page-returns-management .container .col-lg-12 {
    padding: 0;
}

.page-returns-management .container.hero-content {
    padding: 0 9rem;
}

.page-returns-management .container section.section-light {
    padding: 80px 9rem;
    background: #f6f8ff;
}

.page-returns-management section.section-white {
    padding: 80px 9rem;
}

.page-returns-management .container div#content {
    padding-bottom: 0;
}

.page-returns-management footer .container {
    max-width: 1430px;
}


 .entry-content .btn {
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 800;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .entry-content .btn-primary {
            background: var(--orange);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(255,90,31,.3);
        }

        .entry-content .btn-primary:hover {
            background: var(--orange-h);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255,90,31,.45);
        }

        .entry-content .btn-outline {
            border: 1.5px solid var(--navy);
            color: var(--navy);
            background: transparent;
        }

        .entry-content .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
        }

        .entry-content .btn-outline-white {
            border: 1.5px solid var(--white) !important;
            color: var(--white);
            background: transparent;
        }

        .entry-content .btn-outline-white:hover {
            background: rgba(255,255,255,.12);
            transform: translateY(-2px);
        }
