.elementor-4004 .elementor-element.elementor-element-e78e997{--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-4004 .elementor-element.elementor-element-127d74a{--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-4004 .elementor-element.elementor-element-991bc92{--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-4004 .elementor-element.elementor-element-88942c0{--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-4004 .elementor-element.elementor-element-4b58f0d{--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-3a43e55 */:root {
    --primary-brand: #3b82f6;
    --border-color: #dee2e6;
    --background-light: #f8f9fa;
    --secondary-gray: #6c757d;
    --success: #10b981;
}

.hidden { display: none !important; }
.full-width { width: 100%; }
.divider { height: 1px; background: var(--border-color); margin: 1.5rem 0; }
.small-text { font-size: 0.8rem; color: var(--secondary-gray); margin-top: 4px; }
.btn { border: none; padding: 12px 20px; border-radius: 6px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; color: white; background: var(--primary-brand); }
.btn-secondary { background: #6c757d; color: white; }

/* Page Header */
.page-header { text-align: left; margin: 2rem auto 3rem auto; max-width: 800px; }
.page-header h2 { font-size: 2.8rem; font-weight: 700; line-height: 1.2; color: #1a1a1a; margin-bottom: 1rem; }
.page-header p { font-size: 1.15rem; color: var(--secondary-gray); line-height: 1.6; margin: 0; }

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

/* Workspace Layout */
.workspace { 
    display: flex; 
    gap: 2rem; 
    align-items: flex-start; 
    min-height: 500px;
}

/* Drop Zone */
.drop-zone { 
    border: 2px dashed var(--border-color); 
    border-radius: 8px; 
    padding: 3rem; 
    text-align: center; 
    cursor: pointer; 
    transition: background 0.2s;
    background: white;
}
.drop-zone:hover { background: #f0f7ff; border-color: var(--primary-brand); }

/* Sidebar */
.controls-panel { 
    flex: 0 0 320px; 
    background: white; 
    padding: 1.5rem; 
    border-radius: 8px; 
    border: 1px solid var(--border-color);
}

/* Preview Panel */
.preview-panel { 
    flex: 1; 
    background: var(--background-light); 
    border-radius: 8px; 
    border: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Stats Bar */
.stats-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.stat-box { display: flex; flex-direction: column; align-items: center; }
.stat-label { font-size: 0.75rem; color: var(--secondary-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { font-weight: 700; font-size: 1.1rem; color: #333; }
.stat-box.active .stat-value { color: var(--primary-brand); }
.stat-arrow { color: var(--secondary-gray); font-size: 1.2rem; }
.stat-savings { background: var(--success); color: white; padding: 4px 10px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; }

/* Image Preview */
.image-wrapper {
    position: relative;
    max-width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    /* Checkerboard pattern for transparency */
    background-image: linear-gradient(45deg, #eee 25%, transparent 25%), linear-gradient(-45deg, #eee 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #eee 75%), linear-gradient(-45deg, transparent 75%, #eee 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

#previewImage { display: block; max-width: 100%; max-height: 500px; height: auto; }

/* Loading Overlay for Image */
.img-loader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.7); display: flex; justify-content: center; align-items: center; }
.spinner-small { width: 30px; height: 30px; border: 3px solid #ccc; border-top: 3px solid var(--primary-brand); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Inputs */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-input { width: 100%; padding: 0.6rem; border: 1px solid var(--border-color); border-radius: 6px; }
input[type="range"] { width: 100%; cursor: pointer; }

/* Buttons */
.action-buttons { display: flex; gap: 10px; margin-top: 1rem; }

/* Mobile */
@media (max-width: 800px) {
    .workspace { flex-direction: column; }
    .controls-panel { width: 100%; order: -1; }
    .stats-container { width: 100%; justify-content: space-between; padding: 1rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-da5656f *//* --- Styling for Info Sections (About and FAQ) --- */

/* General container for the content block */
.info-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem 1rem;
    border-top: 1px solid #e9ecef;
}

/* Styles the main headers */
.info-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #212529;
    margin-bottom: 3rem;
}

/* --- About/Why Section (Applies Full Justification) --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    /* Removed text-align: justify from the container, applied to the paragraph */
}
.about-content p {
    /* FORCES full justification (aligned to both left and right edges) */
    text-align: justify !important; 
    
    /* CRITICAL for readability with justification */
    line-height: 1.75 !important; 
    word-spacing: 0.08rem !important; 
    
    font-size: 1.1rem;
    color: #343a40;
    margin-bottom: 1.5rem;
}

/* --- FAQ Section Grid and Items --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

/* The Question (Strong Tag) */
.faq-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.75rem;
    text-align: left; 
}

/* The Answer (Paragraph Tag) */
.faq-item p {
    /* FORCES full justification */
    text-align: justify !important;
    
    /* CRITICAL for readability with justification */
    line-height: 1.7 !important;
    word-spacing: 0.08rem !important;
    
    margin: 0; 
    font-size: 0.95rem; 
    color: #6c757d;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .info-section h2 {
        font-size: 1.8rem;
    }
    .about-content p {
        font-size: 1.05rem; 
    }
    .faq-grid {
        /* Forces a single column layout on mobile devices */
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-71d528d */<style>
/* ============================================================
   UTILIX BLUE GLITTER DESIGN - DISCOVER OPTIMIZED
   ============================================================ */

.utilix-glitter-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.utilix-glitter-section h3 {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.glitter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.glitter-pill {
    position: relative;
    overflow: hidden; /* Essential for glitter effect */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: #2563eb; /* Royal Blue */
    border: 1px solid #1d4ed8;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

/* --- The Glittering Animation --- */
.glitter-pill::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
}

.glitter-pill:hover::after {
    left: 150%;
    transition: all 0.6s ease-in-out;
}

.glitter-pill:hover {
    background: #1d4ed8;
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.3), 0 0 15px rgba(37, 99, 235, 0.2);
}

.g-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .glitter-pill { padding: 10px 20px; font-size: 0.85rem; }
}
</style>/* End custom CSS */