.elementor-278 .elementor-element.elementor-element-9225b75{--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-278 .elementor-element.elementor-element-9225b75:not(.elementor-motion-effects-element-type-background), .elementor-278 .elementor-element.elementor-element-9225b75 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #2563EB 0%, #2563EB 100%);}.elementor-278 .elementor-element.elementor-element-8429706{--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;}@media(min-width:768px){.elementor-278 .elementor-element.elementor-element-9225b75{--content-width:1200px;}.elementor-278 .elementor-element.elementor-element-8429706{--content-width:1200px;}}/* Start custom CSS for container, class: .elementor-element-8429706 *//* ===== PDF CONVERTER STYLES ===== */

/* Main Container */
.pdf-converter-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Tabs */
.converter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 24px;
    background: #f8fafc;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.tab-btn:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Upload Area */
.upload-area {
    border: 3px dashed #cbd5e1;
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.upload-area.drag-over {
    border-color: #2563eb;
    background: #dbeafe;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.upload-area h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 10px;
}

.upload-area p {
    color: #64748b;
    margin-bottom: 20px;
}

.browse-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.browse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.file-info {
    margin-top: 15px;
    font-size: 14px;
    color: #94a3b8;
}

/* Conversion Options */
.conversion-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
}

.option-group {
    display: flex;
    flex-direction: column;
}

.option-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.option-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    color: #1e293b;
    transition: border-color 0.3s ease;
}

.option-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.convert-btn {
    flex: 1;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.convert-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.convert-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.clear-btn {
    padding: 16px 30px;
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    background: #e2e8f0;
}

/* Progress Bar */
.progress-container {
    margin: 30px 0;
    padding: 25px;
    background: #f0f9ff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 6px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: #1e293b;
    font-weight: 500;
}

/* Results Container */
.results-container {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 15px;
    text-align: center;
}

.results-container h4 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 25px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    margin-bottom: 20px;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.download-btn i {
    font-size: 20px;
}

.convert-again-btn {
    padding: 12px 24px;
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.convert-again-btn:hover {
    background: #2563eb;
    color: white;
}

/* File List */
.file-list {
    margin-top: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #2563eb;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.file-size {
    color: #64748b;
    font-size: 14px;
}

.file-remove {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pdf-converter-container {
        margin: 20px;
        padding: 20px;
    }
    
    .converter-tabs {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .upload-area {
        padding: 40px 15px;
    }
    
    .conversion-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .converter-title {
        font-size: 24px;
    }
    
    .download-btn {
        padding: 15px 25px;
        font-size: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Loading Animation */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* End custom CSS */