@charset "UTF-8";    
    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-thin.otf') format('opentype');
      font-weight: 100;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-extralight.otf') format('opentype');
      font-weight: 200;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-light.otf') format('opentype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-regular.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-medium.otf') format('opentype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-semibold.otf') format('opentype');
      font-weight: 600;
      font-style: normal;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-bold.otf') format('opentype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-extrabold.otf') format('opentype');
      font-weight: 800;
      font-style: normal;
    }

    @font-face {
      font-family: 'Helix';
      src: url('/public/fonts/helix-heavy.otf') format('opentype');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

    body {
      font-family: 'Helix', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    .biz-text {font-size: 18px; font-weight: 600; fill: #4F46E5; letter-spacing: 1px; }
    .fa-icon { font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 22px; }
    .label-text {font-size: 11px; font-weight: 600; fill: #64748b; text-transform: uppercase; letter-spacing: 1px;}
        
    .galaxy { transform-origin: center; animation: orbiting 70s linear infinite; }
    .keep-upright { transform-box: fill-box; transform-origin: center; animation: counter-orbiting 70s linear infinite; }
        
    @keyframes orbiting { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes counter-orbiting { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
    
    @keyframes marquee {
        0% { transform: translateX(0%); }
        100% { transform: translateX(-100%); }
    }
    @keyframes marquee2 {
        0% { transform: translateX(100%); }
        100% { transform: translateX(0%); }
    }
    .animate-marquee { animation: marquee 35s linear infinite; }
    .animate-marquee2 { animation: marquee2 35s linear infinite; }
    
    .relative:hover .animate-marquee, 
    .relative:hover .animate-marquee2 { 
        animation-play-state: paused; 
    }

    .tab-content.animate-in {
        animation: fadeInSlide 0.5s ease forwards;
    }
    @keyframes fadeInSlide {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .tab-btn.active {
        background-color: white;
        color: #0f172a;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    }

    .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    
    .benefit-content.animate-in {
        animation: fadeIn 0.4s ease forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }
    .animate-float {
        animation: float 6s ease-in-out infinite;
    }
    html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    
    /* Headings */
    .prose h2 { 
        margin-top: 2.5rem; 
        margin-bottom: 1rem; 
        font-weight: 900; 
        color: #334155; 
        font-size: 1.875rem; 
        letter-spacing: -0.025em; 
    }
    .prose h3 { 
        margin-top: 2rem; 
        margin-bottom: 0.75rem; 
        font-weight: 800; 
        color: #1e293b; 
        font-size: 1.5rem; 
    }
    .prose h4 { 
        margin-top: 1.5rem; 
        margin-bottom: 0.5rem; 
        font-weight: 700; 
        color: #4f46e5; 
        font-size: 1.25rem; 
        text-transform: uppercase; 
        letter-spacing: 0.05em; 
    }

    .prose p { 
        margin-bottom: 1.8rem; 
        line-height: 1.75; 
        color: #475569; 
    }
    .prose strong { 
        color: #0f172a; 
        font-weight: 700; 
    }
    .prose ul { 
        margin-bottom: 2rem; 
        list-style: none; 
        padding-left: 0; 
    }
    .prose ul li { 
        position: relative; 
        padding-left: 2rem; 
        margin-bottom: 0.75rem; 
        color: #475569; 
    }

    .prose ul li::before { 
        content: ""; 
        position: absolute; 
        left: 0.5rem; 
        top: 0.65rem; 
        width: 0.5rem; 
        height: 0.5rem; 
        background-color: #4f46e5; 
        transform: rotate(45deg); 
        border-radius: 1px; 
    }

    /* Blockquotes */
    .prose blockquote { 
        border-left: 4px solid #4f46e5; 
        background: #f8fafc; 
        padding: 1.5rem; 
        border-radius: 0 1.5rem 1.5rem 0;
        font-style: italic;
        margin: 2rem 0;
        color: #334155;
    }

    /* Images */
    .prose img {
        border-radius: 2rem;
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
        margin: 2.5rem 0;
    }

    /* 1. Force the list to go horizontal */
.pagination {
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem; /* Space between numbers */
    align-items: center;
}

/* 2. Style the individual boxes */
.pagination li a, 
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background-color: white;
    border: 1px solid #e2e8f0; /* slate-200 */
    color: #475569; /* slate-600 */
    text-decoration: none;
}

/* 3. The Active Page (Indigo) */
.pagination li.active span {
    background-color: #4f46e5 !important; /* indigo-600 */
    color: white !important;
    border-color: #4f46e5 !important;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

/* 4. Hover Effects */
.pagination li a:hover {
    background-color: #f8fafc; /* slate-50 */
    border-color: #4f46e5;
    color: #4f46e5;
}

/* 5. Hide the "Small" text that Bootstrap sometimes adds */
.pagination .page-item span {
    display: flex;
}

