.elementor-2925 .elementor-element.elementor-element-42f280f{--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-2925 .elementor-element.elementor-element-f7b67c2{--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-2925 .elementor-element.elementor-element-09b8f5c{--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-2925 .elementor-element.elementor-element-7612523{--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-9b4e8ab *//* PDF Merge Tool Specific Styles */

/* File List Item Styles */
.file-list-item {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    cursor: move;
}

.file-list-item:hover {
    border-color: var(--primary-brand);
    box-shadow: var(--shadow-md);
}

.file-list-item.dragging {
    opacity: 0.5;
    background-color: var(--background-light);
}

.file-list-item.encrypted {
    border-left: 4px solid var(--primary-yellow);
    background-color: rgba(255, 193, 7, 0.05);
}

.file-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.file-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    color: var(--primary-red);
}

.file-details {
    flex: 1;
}

.file-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    word-break: break-all;
}

.file-size {
    font-size: 0.8rem;
    color: var(--secondary-gray);
}

.file-status {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.status-encrypted {
    color: var(--primary-yellow);
    font-weight: 500;
}

.status-error {
    color: var(--primary-red);
    font-weight: 500;
}

.file-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.move-handle {
    cursor: move;
    padding: 0.5rem;
    color: var(--secondary-gray);
    border: none;
    background: none;
}

.move-handle:hover {
    color: var(--primary-black);
}

.remove-file {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.remove-file:hover {
    background-color: rgba(229, 50, 45, 0.1);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
}

.modal-content {
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h4 {
    margin: 0;
    color: var(--primary-black);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--background-light);
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-brand);
}

/* Drag and Drop Preview */
.drop-zone-preview {
    border: 2px dashed var(--primary-brand);
    background-color: rgba(59, 130, 246, 0.05);
}

/* Success State */
.success-state {
    border-color: var(--primary-green);
    background-color: rgba(25, 135, 84, 0.05);
}

/* Error States */
.error-message {
    background-color: rgba(229, 50, 45, 0.1);
    border: 1px solid var(--primary-red);
    color: var(--primary-red-dark);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    font-weight: 500;
}

.file-error {
    border-left: 4px solid var(--primary-red);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-brand), var(--primary-purple));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Download Section */
.download-section {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    border: 2px dashed var(--primary-green);
    margin-top: 2rem;
}

.download-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.download-info {
    background: var(--background-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border: 1px solid var(--border-color);
}

.file-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--secondary-gray);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tool-container {
        padding: 1rem;
    }
    
    .drop-zone {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .file-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .file-actions {
        align-self: flex-end;
    }
    
    .tool-options div[style*="grid-template-columns"] {
        grid-template-columns: 1fr;
    }
    
    .file-stats {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

/* Animation for file addition */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-list-item {
    animation: slideIn 0.3s ease;
}

/* Success animation */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-pulse {
    animation: successPulse 0.6s ease;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ff333dc */<style>
/* ============================================================
   PROFESSIONAL TYPOGRAPHY & SPACING
   ============================================================ */

.utilix-content-wrapper {
    max-width: 800px; /* Optimized line-length for reading */
    margin: 40px auto;
    padding: 20px;
    color: #2d3748; /* Dark charcoal, softer than pure black */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Fluid Paragraph Text: Scales between 16px and 18px */
.content-block p, 
.feature-item p, 
.faq-card p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); 
    line-height: 1.7; /* Increased for better legibility */
    margin-bottom: 1.2rem;
    letter-spacing: -0.011em; /* Professional tight kerning */
}

/* Professional Headers */
.section-title {
    color: #111827;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 12px;
}

.feature-item h3 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Modern List Styling */
.step-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 12px 16px 12px 45px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #475569;
}

/* Professional FAQ Style */
.faq-card {
    border-left: 4px solid #4f46e5; /* Accent color */
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.faq-card strong {
    font-size: 1.1rem;
    color: #1e293b;
    display: block;
    margin-bottom: 8px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .utilix-content-wrapper { padding: 15px; }
    .section-title { font-size: 1.4rem; }
    .step-list li { padding-left: 35px; }
}
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-45543fa *//* --- Tools Section --- */
.tools-section {
  position: relative;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fb 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 60px rgba(230,57,70,0.05);
  margin: 2rem auto;
  max-width: 1200px;
  box-sizing: border-box;
}

/* Section Heading */
.tools-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e63946;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: sans-serif; /* Ensuring generic font fallback */
  
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeSlideFloat 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* --- Tools Grid --- */
.tools-grid {
  display: grid;
  gap: 1.5rem;
  /* Using auto-fit ensures cards stretch to fill rows symmetrically */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 0 0.5rem;
  perspective: 1000px;
}

/* --- Tool Card --- */
.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255,255,255,0.95);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
  text-decoration: none; /* Removes underline from links */
  
  /* Auto height to fit content */
  height: 100%;
  min-height: 220px;
  box-sizing: border-box;
  overflow: hidden;

  /* Animation */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeSlideFloat 0.6s ease forwards;
  /* Animation delay is now handled by JS for perfect staggering */
}

/* Keyframes: Fade + Slide + Scale */
@keyframes fadeSlideFloat {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  60% { opacity: 1; transform: translateY(-5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hover Effects */
.tool-card:hover,
.tool-card:focus-visible {
  transform: translateY(-6px) rotateX(2deg);
  border-color: #e63946;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15), 0 0 25px rgba(230,57,70,0.2);
  outline: none;
}

/* Glossy Overlay */
.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}
.tool-card:hover::before { opacity: 1; }

/* Gradient Border */
.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(270deg, #e63946, #d62828, #f77f00, #e63946, #d62828);
  background-size: 600% 600%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.tool-card:hover::after {
  opacity: 1;
  animation: gradientFlow 3s linear infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Icon */
.tool-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
  transition: transform 0.4s ease, color 0.4s ease;
  color: #e63946;
  animation: floatIcon 3s ease-in-out infinite;
  z-index: 2;
}
.tool-card:hover .tool-card-icon {
  transform: scale(1.1) rotate(2deg);
  color: #b51724;
}
@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Title & Description */
.tool-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
  font-family: sans-serif;
}
.tool-card-desc {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  line-height: 1.5;
  font-family: sans-serif;
}

/* --- Responsive --- */
@media (max-width: 768px)  { 
  .tools-section { padding: 2rem 1rem; }
  .tools-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } 
}

@media (max-width: 480px) {
  /* On very small screens, force 1 column for full symmetry */
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 1.2rem; min-height: auto; }
  .tool-card-icon { font-size: 2rem; }
}/* End custom CSS */