        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ff9a30;
            --primary-dark: #ea580c;
            --bg: #f5f5f7;
            --surface: #ffffff;
            --text-main: #1d1d1f;
            --text-muted: #86868b;
            --border: #d2d2d7;
            --shadow: 0 2px 16px rgba(0,0,0,0.08);
            --radius: 12px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text-main);
            line-height: 1.5;
        }

        .page-header {
            padding: 3rem 1.5rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(255,154,48,0.05), transparent);
        }

        .header-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .header-title span {
            color: var(--primary);
        }

        .header-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .filter-section {
           
            z-index: 100;
            padding: 0 1.5rem;
            margin-bottom: 2rem;
        }

        .filter-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 0.75rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow);
        }

        .search-box {
            flex: 1;
            display: flex;
            align-items: center;
            background: var(--bg);
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            gap: 0.5rem;
        }

        .search-box svg {
            width: 18px;
            height: 18px;
            color: var(--text-muted);
        }

        .search-box input {
            border: none;
            background: transparent;
            width: 100%;
            font-size: 0.95rem;
            outline: none;
            color: var(--text-main);
        }

        .search-box input::placeholder {
            color: var(--text-muted);
        }

        .filter-actions {
            display: flex;
            gap: 0.5rem;
        }

        .select-custom {
            background: var(--bg);
            border: 1px solid var(--border);
            padding: 0.625rem 1rem;
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            outline: none;
            color: var(--text-main);
        }

        .btn-search {
            background: var(--primary);
            color: white;
            border: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-search:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        .btn-search svg {
            width: 20px;
            height: 20px;
        }

        .directory-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem 4rem;
        }

        .profile-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .profile-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        .card-header {
            padding: 1rem 1.25rem;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
        }

        .card-name {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--text-main);
            letter-spacing: -0.01em;
        }

        .profession-label {
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .image-container {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #f0f0f0;
        }

        .slide-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .slide-img.active {
            opacity: 1;
            z-index: 1;
        }

        .image-counter {
            position: absolute;
            bottom: 0.75rem;
            right: 0.75rem;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            color: white;
            padding: 0.375rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 10;
        }

        .card-footer {
            padding: 1rem 1.25rem;
            display: flex;
            gap: 0.75rem;
        }

        .btn-view {
            flex: 1;
            background: #ff9a30;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            text-align: center;
            display: inline-block;
        }

        .btn-view:hover {
            background: #000;
            transform: translateY(-1px);
        }

        .btn-whatsapp {
            width: 44px;
            height: 44px;
            background: #25D366;
            color: white;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-whatsapp:hover {
            background: #1eb855;
            transform: translateY(-1px);
        }

        .btn-whatsapp svg {
            width: 22px;
            height: 22px;
        }

        .empty-state {
            grid-column: 1/-1;
            text-align: center;
            padding: 5rem 1.5rem;
        }

        .empty-state svg {
            width: 64px;
            height: 64px;
            color: var(--border);
            margin-bottom: 1rem;
        }

        .empty-state h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .empty-state p {
            color: var(--text-muted);
        }

        @media (max-width: 1200px) {
            .directory-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .directory-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .header-title {
                font-size: 2rem;
            }

            .filter-container {
                flex-direction: column;
                border-radius: 16px;
                padding: 1rem;
            }

            .search-box,
            .filter-actions {
                width: 100%;
            }

            .select-custom {
                flex: 1;
            }

            .directory-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

   /* 1. Reset the Container */
.pagination-container {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
}

.pagination-container nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. Hide the "Showing 1 to 9..." text block */
.pagination-container nav > div:last-child > div:first-child {
    display: none;
}

/* 3. Style the page numbers and arrows */
.pagination-container .inline-flex.shadow-sm {
    display: flex;
    gap: 5px;
    box-shadow: none;
}

.pagination-container .inline-flex a, 
.pagination-container .inline-flex span[aria-current="page"] span,
.pagination-container .inline-flex span[aria-disabled="true"] span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    background: #fff;
    font-size: 14px;
    transition: all 0.2s;
}

/* 4. Active Page Style (Saffron) */
.pagination-container span[aria-current="page"] span {
    background-color: #ff9933 !important;
    color: white !important;
    border-color: #ff9933 !important;
}

/* 5. Hover Effect */
.pagination-container a:hover {
    border-color: #ff9933;
    color: #ff9933;
    background-color: #fff9f2;
}

/* 6. Disabled State */
.pagination-container span[aria-disabled="true"] span {
    color: #ccc;
    background: #f9f9f9;
    cursor: not-allowed;
}

/* 7. Hide the "Mobile" version block (Next/Previous text) */
.pagination-container .sm\:hidden {
    display: none;
}

/* 8. Fix the SVG sizes */
.pagination-container svg {
    width: 18px;
    height: 18px;
    display: inline-block;
}

   .empty-state-container {
        text-align: center;
        padding: 4rem 1rem;
        background: #f9fafb;
        border-radius: 12px;
        margin: 2rem 0;
        border: 2px dashed #e5e7eb;
    }
    .empty-icon svg {
        width: 64px;
        height: 64px;
        color: #9ca3af;
        margin-bottom: 1rem;
    }
    .empty-state-container h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
    }
    .empty-state-container p {
        color: #6b7280;
        margin-bottom: 1.5rem;
    }
    .btn-reset {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background-color: #ff9933; /* Sanatani Orange */
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s;
    }
    .btn-reset:hover {
        background-color: #e67e00;
    }
