
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 10px;
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.2rem;
        }
        
        .tool-container {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .upload-area {
            border: 3px dashed #3498db;
            border-radius: 12px;
            padding: 60px 20px;
            text-align: center;
            background: #ffffff;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-bottom: 30px;
        }
        
        .upload-area:hover {
            border-color: #2980b9;
            background: #f7f9fc;
        }
        
        .upload-area.dragover {
            border-color: #27ae60;
            background: #eafaf1;
        }
        
        .upload-text {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .upload-subtext {
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        .file-input {
            display: none;
        }
        
        .upload-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .upload-btn:hover {
            background: #2980b9;
        }
        
        .compression-controls {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .quality-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .quality-slider {
            width: 200px;
            height: 6px;
            border-radius: 3px;
            background: #ddd;
            outline: none;
            -webkit-appearance: none;
        }
        
        .quality-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #3498db;
            cursor: pointer;
        }
        
        .compress-all-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .compress-all-btn:hover {
            background: #229954;
        }
        
        .compress-all-btn:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        .images-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .image-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .image-preview {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .image-info {
            margin-bottom: 15px;
        }
        
        .image-name {
            font-weight: 600;
            margin-bottom: 5px;
            word-break: break-word;
        }
        
        .image-size {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .compression-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .original-size {
            color: #e74c3c;
        }
        
        .compressed-size {
            color: #27ae60;
        }
        
        .savings {
            color: #3498db;
            font-weight: 600;
        }
        
        .image-actions {
            display: flex;
            gap: 10px;
        }
        
        .compress-btn, .download-btn, .remove-btn {
            flex: 1;
            padding: 8px 12px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .compress-btn {
            background: #3498db;
            color: white;
        }
        
        .compress-btn:hover {
            background: #2980b9;
        }
        
        .download-btn {
            background: #27ae60;
            color: white;
        }
        
        .download-btn:hover {
            background: #229954;
        }
        
        .remove-btn {
            background: #e74c3c;
            color: white;
        }
        
        .remove-btn:hover {
            background: #c0392b;
        }
        
        .download-all-btn {
            background: #8e44ad;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            display: block;
            margin: 20px auto;
        }
        
        .download-all-btn:hover {
            background: #7d3c98;
        }
        
        .download-all-btn:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        .content-section {
            max-width: 800px;
            margin: 0 auto 50px auto;
        }
        
        .content-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
        }
        
        .content-section h3 {
            color: #34495e;
            margin: 25px 0 15px 0;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .features-list {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .features-list ul {
            margin-left: 20px;
        }
        
        .features-list li {
            margin-bottom: 10px;
            color: #555;
        }
        
        .faq-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
            margin-top: 50px;
        }
        
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 20px;
        }
        
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .faq-question {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .faq-answer {
            color: #555;
            line-height: 1.6;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background: #e9ecef;
            border-radius: 3px;
            overflow: hidden;
            margin-top: 10px;
        }
        
        .progress-fill {
            height: 100%;
            background: #3498db;
            width: 0%;
            transition: width 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .tool-container {
                padding: 25px;
            }
            
            .upload-area {
                padding: 40px 15px;
            }
            
            .compression-controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .quality-slider {
                width: 100%;
            }
            
            .images-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>


<--word convert pdf-->

<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 10px;
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.2rem;
        }
        
        .tool-container {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .upload-section {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            border: 2px dashed #3498db;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .upload-section:hover {
            border-color: #2980b9;
            background: #f7f9fc;
        }
        
        .upload-section.dragover {
            border-color: #27ae60;
            background: #eafaf1;
        }
        
        .upload-icon {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 20px;
        }
        
        .upload-text {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .upload-subtext {
            color: #7f8c8d;
            margin-bottom: 25px;
            font-size: 1rem;
        }
        
        .file-input {
            display: none;
        }
        
        .upload-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-right: 15px;
        }
        
        .upload-btn:hover {
            background: #2980b9;
        }
        
        .cloud-import {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .cloud-text {
            color: #7f8c8d;
            margin-bottom: 15px;
        }
        
        .cloud-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cloud-btn {
            background: #ffffff;
            border: 2px solid #e9ecef;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            color: #555;
        }
        
        .cloud-btn:hover {
            border-color: #3498db;
            color: #3498db;
        }
        
        .conversion-controls {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .convert-all-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .convert-all-btn:hover {
            background: #229954;
        }
        
        .convert-all-btn:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        .files-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .file-item {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
        }
        
        .file-info {
            margin-bottom: 20px;
        }
        
        .file-name {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
            word-break: break-word;
            color: #2c3e50;
        }
        
        .file-details {
            display: flex;
            justify-content: space-between;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .file-status {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-top: 10px;
        }
        
        .status-pending {
            background: #fff3cd;
            color: #856404;
        }
        
        .status-converting {
            background: #d1ecf1;
            color: #0c5460;
        }
        
        .status-completed {
            background: #d4edda;
            color: #155724;
        }
        
        .status-error {
            background: #f8d7da;
            color: #721c24;
        }
        
        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
            margin: 15px 0;
        }
        
        .progress-fill {
            height: 100%;
            background: #3498db;
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .file-actions {
            display: flex;
            gap: 10px;
        }
        
        .convert-btn, .download-btn, .remove-btn {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .convert-btn {
            background: #3498db;
            color: white;
        }
        
        .convert-btn:hover {
            background: #2980b9;
        }
        
        .download-btn {
            background: #27ae60;
            color: white;
        }
        
        .download-btn:hover {
            background: #229954;
        }
        
        .remove-btn {
            background: #e74c3c;
            color: white;
        }
        
        .remove-btn:hover {
            background: #c0392b;
        }
        
        .download-all-btn {
            background: #8e44ad;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            display: block;
            margin: 20px auto;
        }
        
        .download-all-btn:hover {
            background: #7d3c98;
        }
        
        .download-all-btn:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .feature-card {
            background: #ffffff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: center;
            border: 1px solid #e9ecef;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #3498db;
        }
        
        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .feature-description {
            color: #7f8c8d;
            line-height: 1.5;
        }
        
        .content-section {
            max-width: 800px;
            margin: 0 auto 50px auto;
        }
        
        .content-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .content-section h3 {
            color: #34495e;
            margin: 25px 0 15px 0;
            font-size: 1.3rem;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: #555;
            font-size: 1rem;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .benefit-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }
        
        .benefit-item h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .benefit-item p {
            color: #555;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .faq-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
            margin-top: 50px;
        }
        
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 20px;
        }
        
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .faq-question {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .faq-answer {
            color: #555;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .tool-container {
                padding: 25px;
            }
            
            .upload-section {
                padding: 30px 20px;
            }
            
            .conversion-controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .files-grid {
                grid-template-columns: 1fr;
            }
            
            .cloud-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cloud-btn {
                width: 200px;
            }
        }
    </style>
