    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --purple: #7C3AED;
    --purple-light: #8B5CF6;
    --blue: #3B82F6;
    --indigo: #4F46E5;
    --gradient: linear-gradient(135deg, #2F80ED, #3B82F6);
    --black: #202020;
    --text: #1F2937;
    --muted: #202020;
    --border: #E5E7EB;
    --bg: #F9FAFB;
    --white: #ffffff;
    --green: #10B981;
    --orange: #F59E0B;
    --red: #EF4444;
    --pink: #EC4899;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 14px;
    line-height: 1.6;
  }

  a { text-decoration: none; color: inherit; }

  nav {
    display: flex;
    align-items: center;
    padding: 15px 100px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    justify-content: space-between;
 }
  .logo img {
    max-height: 50px;
  }



  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: end;
    width: 35%;
  }

  .lang{
      position:relative;
      display:flex;
      align-items:center;
      gap:8px;
      cursor:pointer;
      padding:5px 10px;
      border-radius:22px;
      color:#202020;
      font-weight:600;
      background:#f5f5f5;
      width:fit-content;
      user-select:none;
  }

  .lang i{
      font-size:14px;
  }

  .arrow{
      font-size:12px;
  }

  .dropdown-options {
      position: absolute;
      top: 115%;
      left: 0;
      width: 90px;
      background: #f5f5f5;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,.15);
      list-style: none; 
      display: none;
      z-index: 999;
  }

  .dropdown-options li a{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 15px;
      color:#202020;
      text-decoration:none;
      transition:.3s;
  }

  .dropdown-options li a:hover{
      background:#eee;
  }

  .dropdown-options img{
      width:22px;
      height:16px;
      border-radius:2px;
  }
  .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    height: 40px;
    justify-content: center;
  }

  .btn-primary {
    background: #4d90fe;
    color: white;
    /* box-shadow: 0 4px 15px rgba(124,58,237,0.3); */
  }

  .btn-primary:hover {
    /* transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.4); */
    background: #357ae8;
  } 

  /* .btn-outline {
    background: transparent;
    border: 2px solid #4d90fe;
    color: #4d90fe;
  } */

  // .btn-outline:hover { background: var(--purple); color: white; }

  .hero {
    padding: 60px 0px 0px;
    max-width: 100%;
    margin: 0 auto;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #D1D5DB;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid #D1D5DB;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
  .hero-left-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  .badge::before { content: '●'; font-size: 8px; }

  .hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    text-align: center;
  }

   .work-sec span {
    background: linear-gradient(135deg, #7C3AED, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
   }
  .hero p {
    font-size: 15px;
    color: var(--muted); 
    max-width: 420px;
    line-height: 1.7;
    text-align: center;
  }

  .hero-badges {
    display: flex;
    gap: 10px; 
    flex-wrap: wrap;
  }

  .hero-badge {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 10px; 
    font-weight: 500;
    background: #eee;
    padding: 5px  10px;
    border-radius: 100px;
}

  .hero-badge .icon-sm {
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
    color: white;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
    background: #FFFFFF;
    box-shadow: 3px 10px 40px rgba(24, 29, 32, 0.16);
    border-radius: 99px;
    padding: 4px 10px;
  }

  .hero-ctas input[type="search"] {
    width: 320px;
    padding: 12px 18px; 
    border: none;
    outline: none;
    font-size: 16px;
    transition: 0.3s ease;
  }
 
  .hero-ctas button {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: #4d90fe;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .hero-ctas button:hover {
    background: #357ae8;
  }

  .hero-ctas button:active {
    transform: scale(0.98);
  }

  .btn-watch {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text); font-weight: 600;
    cursor: pointer;
  }

  .play-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: var(--purple);
    transition: all 0.2s;
  }

  .play-btn:hover { background: var(--purple); color: white; border-color: var(--purple); }

  .trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
  }

  .avatars {
    display: flex;
  }

  .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    font-size: 12px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    color: white;
  }

  .avatar:first-child { margin-left: 0; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  section {
    padding: 60px 0;
  }
  .upload-box p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .format-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .format-tag {
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
  }

  /* SECTIONS */

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .flex-tool-heading {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  .section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 12px;
  }

  .section-title span { color: var(--purple); }

  .section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 50px;
  }

  .section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .section-header-row .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}
  .section-header-row .left .eyebrow { text-align: left; }
  .section-header-row .left .section-title { 
    text-align: left; 
    font-size: 32px; 
  }
  .section-header-row .left .section-title span {
    background: linear-gradient(135deg, #7C3AED, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #1F2937;
    border-radius: 100px;
    padding: 5px 10px;
  }

  /* TOOLS GRID */
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .tool-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
    transition: all 0.25s;
    cursor: pointer;
  }

  .tool-card:hover {
    box-shadow: 0 0 20px 1px rgba(55, 181, 255, .2);
    transition: all 0.3s ease-in-out;
  }

  .tool-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .tool-card h4 {
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
  }
  .inner_heading_box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .tool-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* FEATURES */
  .features-section { background: var(--bg); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
 
  .feature-right-content {
    text-align: left;
  }
  .feature-icon {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    width: 50px;
    height: 50px;
    padding: 20px;
  } 

  .features-section .section-title span {
    background: linear-gradient(135deg, #7C3AED, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
  }
  .feature-card {
    text-align: center;
    display: flex;
    gap: 15px;
  }
  .feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* STATS BANNER */
  .stats-banner {
    background: linear-gradient(135deg, #1E1B4B, #3730A3, #4F46E5);
    padding: 50px 60px;
    margin: 0;
  }

  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stat-item {
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }

  .stat-icon-wrap {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .stat-item h3 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-item p {
    font-size: 13px;
    opacity: 0.7;
  }
 
  .steps-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 10px; 
    margin: 0 auto;
  }

  .step {
    text-align: center;
  }

  .step-num {
    width: 44px; height: 44px;
    border-radius: 50%; 
    color: white;
    font-weight: 800;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(124,58,237,0.35);
  }

  .step-icon-wrap {
    width: 70px; height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(59,130,246,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 14px;
  }

  .step h4 {
    font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px;
  }

  .step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  .step-arrow {
    font-size: 22px; 
  }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--bg); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  }

  .quote-icon {
    font-size: 36px;
    color: var(--purple);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
  }

  .testimonial-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .stars { color: #F59E0B; font-size: 14px; margin-bottom: 16px; }

  .reviewer {
    display: flex; align-items: center; gap: 12px;
  }

  .reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: white;
    flex-shrink: 0;
  }

  .reviewer h5 { font-size: 14px; font-weight: 700; color: var(--black); }
  .reviewer p { font-size: 12px; color: var(--muted); margin: 0; }

  /* FAQ */
  .faq-section { background: white; }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .faq-list { display: flex; flex-direction: column;}

  .faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: white;
    transition: background 0.2s;
  }

  .faq-q:hover { background: var(--bg); }

  .faq-q .plus {
    /* width: 28px; height: 28px;
    border: 1.5px solid var(--border); */
    /* border-radius: 50%; */
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 16px;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.2s;
  }

  .faq-a {
    padding: 0 20px;
    font-size: 13px;
    color: var(--muted);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }

  .faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 16px;
  }

  .faq-item.open .plus {
    transform: rotate(45deg);
    border-color: var(--black);
    color: var(--black);
    /* position: relative; */
    /* left: 0px; */
    /* margin-left: -10px !important; */
	}

  .cta-box {
    background: linear-gradient(135deg, #F5F3FF, #EEF2FF);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    border: 1px solid #DDD6FE;
  }

  .cta-rocket { font-size: 48px; margin-bottom: 16px; }

  .cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
  }

  .cta-box p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: 50px 60px 30px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-brand p {
    font-size: 13px;
    color: var(--muted);
    margin: 12px 0 20px;
    line-height: 1.7;
  }

  .social-links {
    display: flex; gap: 10px;
  }

  .social-link {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .social-link:hover { background: var(--black); color: white; border-color: transparent; }

  .footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
  .footer-col ul li a:hover { color: #000; }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
  }

  .footer-bottom span { color: #202020; }

  /* Dropzone active */
  .upload-box.drag-over {
    border-color: var(--purple);
    background: rgba(124,58,237,0.04);
  }

  /* Tool icon color variants */
  .ti-purple { background: rgba(124,58,237,0.1); }
  .ti-blue   { background: rgba(59,130,246,0.1); }
  .ti-green  { background: rgba(16,185,129,0.1); }
  .ti-orange { background: rgba(245,158,11,0.1); }
  .ti-red    { background: rgba(239,68,68,0.1); }
  .ti-pink   { background: rgba(236,72,153,0.1); }
  .ti-indigo { background: rgba(79,70,229,0.1); }
  .ti-teal   { background: rgba(20,184,166,0.1); }

  .fi-yellow { background: rgba(245,158,11,0.1); }
  .fi-blue   { background: rgba(59,130,246,0.1); }
  .fi-purple { background: rgba(124,58,237,0.1); }
  .fi-green  { background: rgba(16,185,129,0.1); }

  @media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .hero { grid-template-columns: 1fr; padding: 40px 20px; }
    section { padding: 50px 20px; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
  }
  .nav-button-round {
    border-radius: 50%;
    border: 1px solid #E3E3E4;
    width: 40px;
    height: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
  }
  .nav-button-round img {
      width: 20px;
      height: 20px;
  }
  .hidden {
      display: none;
  }
  .upload-icon i {
    background: #90a1b9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 45px;
  }
  section.sec-first { 
    position: relative;
    background: #fff;
    padding-top: 0 !important;
}
  .bg-red {
    background-color: #FBE6E5;
  }
  .red {
    color: #E24841;
  }
  .orange {
    color: #FF7919;
  }
  .bg-orange {
    background-color: #FFEDE0;
  }
  .green {
    color: #247881;
  }
  .bg-green {
    background-color: #ECFAE5;
  }
  .yellow {
    color: #E2C740;
  } 
  .bg-yellow {
    background-color: #FEF9E2;
  }
  .purple {
    color: #624BD8;
  }
  .bg-purple {
    background-color: #E9E6F9;
  }
  .tool-head-left {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  .tool-img i {
    font-size: 28px;
  }
  .tool-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .red-border:hover {
    border: 1px solid #FBE6E5;
  }
  .pur-border:hover  {
    border: 1px solid #E9E6F9; 
  }
  .yellow-border:hover  {
    border: 1px solid #FEF9E2;
  } 
  .green-border:hover  {
    border: 1px solid #ECFAE5;
  }
  .orange-border:hover  {
    border: 1px solid #FFEDE0;
  }
  .green-one{
    background-color: rgb(36, 120, 129);
  }
  .purple-one{
    background-color: #4f46e5;
  }
  .yellow-one{
    background-color: #e2c740;
  }

  .color-green {
    color: #247881 !important;
  }
  .color-violet {
    color: #6F56EC !important;
  }
  .color-purple {
    color: #D61C4E !important;
  }
  .color-orange {
    color: #F66213 !important;
  }

  .no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    font-size: 15px;
    grid-column: 1 / -1;
  }





  /* UPLOAD BOX */
  .upload-wrap {
    max-width: 70%;
    margin: 30px auto 0;
    padding: 0 20px 60px;
  }
  /* .upload-box {
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
  } */
  .upload-box-inner { 
    margin: 0 auto;
    padding: 50px 30px;
    background: #fff;
    border: 2px dashed #D9E2EF;
    border-radius: 18px;
    text-align: center;
    transition: .3s;
  }

  .upload-box-inner:hover{
      border-color:#2F80ED;
      background:#F3F8FF;
  }

  .upload-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 25px;
    border: 1px solid #90a1b9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90a1b9;
    font-size: 32px;
    background: #fff;
  }

  .upload-buttons{
      display:flex;
      justify-content:center;
      gap:16px;
      flex-wrap:wrap;
      margin-bottom:22px;
  }


  .drag-text{
      color:#777;
      font-size:16px;
      margin:0;
  }

  /* PROGRESS */
  .progress-wrap { display: none; margin-top: 22px; text-align: left; }
  .progress-label {
    display: flex; justify-content: space-between;
    font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px;
  }
  .progress-label span.pct { color: var(--purple); }
  .progress-bar {
    width: 100%; height: 10px; background: var(--bg);
    border: 1px solid var(--border); border-radius: 100px; overflow: hidden;
  }
  .progress-fill { height: 100%; width: 0%; border-radius: 100px; background: #2F80ED; transition: width 0.25s ease; }

  /* RESULT */
  .result-wrap { display: none; margin-top: 20px; }
  .reduction-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    border-radius: 100px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    width: 48%;
  }
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  /* .compare-card { border: 1px solid var(--border); border-radius: 16px; padding: 16px; text-align: center; background: var(--bg); } */
  .compare-card.after { background: #ffff; border-color: #202020; }
  .compare-tag {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; border-radius: 100px; margin-bottom: 12px;
    color: var(--muted); background: white; border: 1px solid var(--border);
  }
  .compare-card.after .compare-tag {
    color: #202020;
    border-color: #fff;
    width: 100%;
  }
  .compare-card img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain; 
  }
  .compare-size { font-size: 20px; font-weight: 800; color: var(--dark); }
  .compare-name { font-size: 12px; color: var(--muted); margin-top: 2px; word-break: break-all; }

  .quality-control {
    width: 48%;
  }
  .quality-control .row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; font-size: 13px; font-weight: 600; color: var(--dark);
  }
  .quality-control .row span.val { color: #2F80ED; }
  .quality-control input[type="range"] { width: 100%; accent-color: #2F80ED; }
  .quality-hint { font-size: 12px; color: var(--muted); margin-top: 8px; }

  .result-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    /* width: 50%; */
    flex-direction: column;
 }
  .hidden { display: none !important; }

  .reduction-setting {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .bg-blue {
    background-color: #2F80ED;
  }
  section.work-section {
    background: #eee;
  }
  .quality-hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
    display: none;
  }


  /* placeholder-genertor */
  .image-placeholder-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 420px;
    margin: 18px auto 0; 
    text-align: left; 
  }
  .input-placeholder{
    font-size:13px; 
    font-weight:600; 
    display:block; 
    margin-bottom:6px;
  }
  .progressbar_placeholder {
    display: none;
    margin: 16px auto 0;
    width: 100%;
    max-width: 420px;
  }
  .placeholder-comapre-card{
    flex:0 0 auto;
    width: 30%;
  }
  .placeholder-compare-flex{
    display:flex; 
    align-items:center; 
    justify-content:center; 
    gap:20px; 
    flex-wrap:wrap;
  }
  .row-compare-complete {
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  div#noMetaBanner {
    width: 100% !important;
  }
  div#uploadInner {
    cursor: pointer;
  }
	.breadcrumb {
	    /* max-width: 1200px; */
	    /* margin: 0 auto; */
	    background: #eee;
	    padding: 20px;
	    padding: 20px 110px;
	}