.elementor-4579 .elementor-element.elementor-element-7665b00{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4579 .elementor-element.elementor-element-3f74587{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-18b969d */:root {
    --primary-brand: #0ea5e9; /* Sky Blue */
    --primary-dark: #0284c7;
    --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --bg-light: #f0f9ff;
    --border-color: #e0f2fe;
    --text-main: #0c4a6e;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #10b981;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.hidden { display: none !important; }
.full-width { width: 100%; }
.divider { height: 1px; background: #e2e8f0; margin: 1.5rem 0; }
.btn { border: none; padding: 12px 20px; border-radius: 6px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-secondary { background: white; border: 1px solid #cbd5e1; color: var(--text-main); }
.btn-secondary:hover { background: #f1f5f9; }

/* Page Header */
.page-header { text-align: center; margin-bottom: 2rem; }
.page-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--text-main); }
.page-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* Tool Container */
.tool-container { max-width: 1100px; margin: 0 auto; }

/* Workspace */
.workspace { 
    background: var(--white); 
    padding: 2.5rem; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); 
}
.extract-layout { display: flex; gap: 3rem; align-items: flex-start; min-height: 500px; }

/* Left Panel (Grid) */
.pages-panel { flex: 1; display: flex; flex-direction: column; }

.panel-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;
    padding-bottom: 10px; border-bottom: 1px solid #f1f5f9;
}
.header-left { font-size: 1.1rem; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
.count-badge { background: var(--bg-light); color: var(--primary-dark); padding: 2px 8px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; }

.header-actions .link-btn {
    background: none; border: none; color: var(--primary-dark); cursor: pointer; font-weight: 600; font-size: 0.9rem;
}
.header-actions .link-btn:hover { text-decoration: underline; }
.sep { color: #ccc; margin: 0 5px; }

/* Page Grid */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    padding: 10px;
    max-height: 700px;
    overflow-y: auto;
}

/* Page Card */
.page-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    overflow: hidden;
}

.page-card:hover { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: #cbd5e1; }

/* Selected State */
.page-card.selected {
    border-color: var(--primary-brand);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.page-card.selected::after {
    content: '✓';
    position: absolute;
    top: 5px; right: 5px;
    background: var(--primary-brand);
    color: white;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: bold;
    z-index: 10;
}

.canvas-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.canvas-wrapper canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-num {
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    background: white;
}
.page-card.selected .page-num { background: var(--bg-light); color: var(--primary-dark); }

/* Right Panel (Settings) */
.controls-panel { 
    flex: 0 0 320px; 
    background: var(--bg-light); 
    padding: 1.5rem; 
    border-radius: 8px; 
    border: 1px solid var(--border-color);
}

.controls-panel h3 { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-main); border-bottom: 1px solid #bae6fd; padding-bottom: 0.5rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 600; font-size: 0.95rem; color: var(--text-main); }
.hint-text { font-size: 0.85rem; color: var(--text-light); }

/* Drop Zone */
.drop-zone { 
    border: 2px dashed #cbd5e1; border-radius: 12px; padding: 4rem 2rem; 
    text-align: center; cursor: pointer; background: white; transition: background 0.2s;
}
.drop-zone:hover { background: var(--bg-light); border-color: var(--primary-brand); }
.drop-zone p { margin-top: 5px; }

/* Buttons */
.primary-gradient { background: var(--primary-gradient); color: white; border: none; padding: 14px; font-size: 1rem; border-radius: 8px; font-weight: 600; cursor: pointer; }
.main-buttons { display: flex; flex-direction: column; gap: 15px; margin-top: 1rem; }

/* Loader */
.loader-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 5000;
}
.spinner {
    width: 40px; height: 40px; border: 4px solid #eee;
    border-top: 4px solid var(--primary-brand); border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 900px) {
    .extract-layout { flex-direction: column; }
    .controls-panel { width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8555207 *//* =========================================
   1. MAIN CONTAINER & TYPOGRAPHY
   ========================================= */
.info-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #343a40;
    border-top: 1px solid #f1f3f5; /* Subtle separator */
    padding-top: 3rem;
}

.info-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* =========================================
   2. STEP-BY-STEP GRID
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* The Numbered Icons (1, 2, 3, 4) */
.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e33d3d; /* Utilix Red Brand Color */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(227, 61, 61, 0.25);
    flex-shrink: 0;
}

.feature-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #212529;
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* =========================================
   3. CONTENT & USE CASES (Business/Education)
   ========================================= */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.about-content ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.about-content li {
    margin-bottom: 0.5rem;
    color: #495057;
    line-height: 1.6;
}

/* Specific styling for the Grey "Use Case" Boxes */
.feature-item[style*="background: #f8f9fa"] {
    background-color: #f8f9fa !important;
    padding: 1.5rem !important;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease;
}

.feature-item[style*="background: #f8f9fa"]:hover {
    transform: translateY(-3px);
    border-color: #dee2e6;
}

/* =========================================
   4. FAQ SECTION
   ========================================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.faq-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #343a40;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* =========================================
   5. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .info-section {
        margin: 2rem auto;
        padding: 1.5rem 1rem;
    }

    .info-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Stack grids vertically on mobile */
    .features-grid, .faq-grid {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    /* On mobile, move icons next to text for compactness */
    .feature-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .feature-icon {
        margin-bottom: 0;
        margin-right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Reset the "Use Case" boxes to stack normally */
    .features-grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}/* End custom CSS */