.elementor-4013 .elementor-element.elementor-element-c854b8d{--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-4013 .elementor-element.elementor-element-844308a{--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-4013 .elementor-element.elementor-element-83b3deb{--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-4013 .elementor-element.elementor-element-5b2328a{--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-4013 .elementor-element.elementor-element-d3345bf{--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-da9b1d3 */:root {
    --primary-brand: #3b82f6;
    --border-color: #dee2e6;
    --background-light: #f8f9fa;
    --secondary-gray: #6c757d;
    --danger: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
}

/* Base Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-primary);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.hidden { display: none !important; }
.full-width { width: 100%; }
.text-danger { color: var(--danger); }
.divider { height: 1px; background: var(--border-color); margin: 2rem 0; }

/* Buttons & Links */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s, opacity 0.2s;
    text-decoration: none;
    display: flex; /* For icons */
    align-items: center;
    text-align: center;
    border: 1px solid transparent;
}
.btn-secondary {
    background: transparent;
    color: var(--secondary-gray);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: #e9ecef;
}
#saveBtn {
    background-color: var(--primary-brand);
    color: white;
}
#saveBtn:hover { opacity: 0.9; }

/* New style for the select image button in dropzone */
.btn-primary-dropzone {
    background-color: var(--primary-brand);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    font-size: 1.1rem;
    margin-top: 15px;
}
.btn-primary-dropzone:hover {
    background-color: #2563eb; 
}


/* Page Header (H1) */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}
.page-header h1 { 
    font-size: 2.2rem; 
    margin-bottom: 0.5rem; 
    color: var(--primary-brand); 
    line-height: 1.2;
}
.page-header p { color: var(--secondary-gray); }


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

/* Workspace */
.workspace { background: white; padding: 2rem; border-radius: 8px; border: 1px solid var(--border-color); }

/* Toolbar */
.toolbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    gap: 1rem; 
    margin-bottom: 2rem; 
    flex-wrap: wrap;
    background: var(--background-light);
    padding: 1rem;
    border-radius: 8px;
}
.tool-group { display: flex; gap: 10px; }
.btn svg { margin-right: 8px; }

/* Preview Area */
.preview-container {
    width: 100%;
    min-height: 300px;
    max-height: 600px;
    background-color: #f0f0f0;
    background-image: 
        linear-gradient(45deg, #ddd 25%, transparent 25%), 
        linear-gradient(-45deg, #ddd 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #ddd 75%), 
        linear-gradient(-45deg, transparent 75%, #ddd 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--border-color);
}

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

/* Footer */
.action-footer { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.filename-input { flex: 1; min-width: 250px; }
.main-buttons { display: flex; gap: 1rem; }
.form-group label, .filename-input 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; }


/* --- SEO/INFO SECTIONS STYLING --- */
.info-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-section h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    font-size: 1.8rem;
    color: var(--primary-brand);
}

.info-section p { 
    font-size: 1.1rem; 
    line-height: 1.7; 
    color: var(--text-secondary); 
    text-align: justify;
    margin-bottom: 1.5rem;
}

.info-section p strong {
    font-weight: 700;
}

/* Internal Link Styling */
.info-section p a, .how-to-list li a {
    color: var(--primary-brand);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-brand);
    transition: color 0.2s, border-bottom-color 0.2s;
}
.info-section p a:hover, .how-to-list li a:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.how-to-list { 
    padding-left: 20px; 
    margin-top: 1.5rem;
}
.how-to-list li { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    margin-bottom: 1rem; 
    color: var(--text-secondary); 
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-brand);
    padding-left: 1.5rem;
}
.faq-item strong { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-size: 1.25rem;
    color: var(--text-primary); 
}
.faq-item p { 
    font-size: 1.1rem; 
    color: var(--text-secondary); 
    text-align: left;
}


/* Responsive */
@media (max-width: 768px) {
    .action-footer { flex-direction: column; align-items: stretch; }
    .main-buttons { flex-direction: column; }
    .toolbar { flex-direction: column; align-items: stretch; gap: 1rem; }
    .tool-group { justify-content: space-around; }

    .page-header h1 { font-size: 1.8rem; }
    .workspace { padding: 1rem; }

    /* Responsive for Info Sections */
    .info-section { padding: 1.5rem; }
    .info-section h3 { font-size: 1.4rem; }
    .info-section p, .how-to-list li, .faq-item p { font-size: 1rem; text-align: left; }
    .faq-item strong { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .tool-group { flex-direction: column; }
    .btn-secondary { justify-content: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0658457 *//* --- 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;

  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;
  /* Auto-fit ensures items stretch and fill the row symmetrically */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-items: stretch; 
  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 link underline */

  /* Forces all cards in a row to be the same height */
  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;
}

/* Stagger animation for initial items */
.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }
.tool-card:nth-child(n+7) { animation-delay: 0.7s; }


/* 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);
}

/* 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;
}
.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;
}
.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: 0.8rem;
  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: 1200px) { .tools-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
@media (max-width: 768px)  { .tools-section { padding: 2rem 1rem; } }
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 1.2rem; min-height: auto; }
  .tool-card-icon { font-size: 2rem; }
}/* End custom CSS */