@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 16px;
}

body {
  background: linear-gradient(to bottom, rgb(246, 255, 251), rgb(230, 255, 243));
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  position: relative;
}
.header__logo img {
  width: 150px;
}
.header__nav {
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: white;
    width: 70%;
    max-width: 300px;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  .header__nav.active {
    transform: translateX(0);
  }
}
.header__link {
  text-decoration: none;
  color: #067d41;
  transition: color 0.3s ease;
  font-size: 17px;
  font-weight: 400;
}
.header__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #333;
}
@media (max-width: 768px) {
  .header__menu-btn {
    display: block;
  }
}
.header__close-btn {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}
@media (max-width: 768px) {
  .header__close-btn {
    display: block;
  }
}

h1,
h2,
h3,
h4,
h5 {
  color: #067d41;
  font-weight: 300;
  text-align: center;
}

[dir=rtl] h3 {
  text-align: right !important;
}

p {
  color: black;
  font-size: 17px;
  font-weight: 300;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

.main-para,
.actions,
.processing-note,
.processing-note,
.progress-count,
.error-message {
  text-align: center;
}

.container {
  padding: 2rem 4rem;
}
@media only screen and (max-width: 576px) {
  .container {
    padding: 2rem 2rem;
  }
}

.section-common {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

@media only screen and (max-width: 576px) {
  .actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .actions .upload-btn,
  .actions .download-btn,
  .actions .download-all-btn,
  .actions .clear-btn,
  .actions .start-btn {
    font-size: 0.9rem;
  }
}

.upload-btn,
.download-btn,
.download-all-btn,
.clear-btn,
.start-btn {
  background: #067d41;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.download-all-btn,
.clear-btn,
.start-btn {
  margin: 0.5rem 0.4rem;
}

.download-all-btn:disabled {
  background: rgb(95, 95, 95);
}

.upload-btn {
  margin: 1rem 0;
}

.progress-count {
  margin: 0.4rem 0;
}

.progress-wrapper {
  width: 100%;
  height: 1rem;
  background: #eee;
  margin: 1rem 0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #067d41;
  transition: width 0.3s ease;
}

.error-message {
  color: rgb(203, 0, 0);
}

.tool-section {
  padding: 2rem 5rem 0 5rem;
}
@media only screen and (max-width: 992px) {
  .tool-section {
    padding: 0 2rem 1rem 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .tool-section {
    padding: 0 1rem 1rem 1rem;
  }
}

.preview-grid {
  margin: 5px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 992px) {
  .preview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 400px) {
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.preview-grid .image-card {
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  animation: fadeIn 0.5s ease forwards;
}
.preview-grid .image-card img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgb(255, 255, 255);
}
.preview-grid .image-card .download-btn {
  width: 100%;
  padding: 0.4rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.preview-grid .image-card .download-btn svg {
  width: 25px;
  height: 25px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.why-choose {
  background: rgb(255, 255, 255);
}
.why-choose .container {
  width: 100%;
}
.why-choose p {
  font-size: 17px;
  letter-spacing: 0.2px;
  line-height: 1.6rem;
  margin-top: 0.4rem;
}

.how-to ol li {
  margin: 1rem 0;
  font-size: 17px;
  font-weight: 300;
}
.how-to ol li p {
  text-align: left;
}

.faq,
.why-choose {
  padding: 0;
}
.faq ol li,
.why-choose ol li {
  margin: 1rem 0;
  font-size: 20px;
}

.why-choose-cards h3 {
  text-align: left;
}

.tool-list {
  width: 100% !important;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.tab-btn {
  padding: 12px 60px;
  cursor: pointer;
  border: none;
  background-color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  font-size: 1.1rem;
  font-weight: 300;
}

.tab-btn.active {
  background-color: #067d41;
  color: white;
}

.tools-tab {
  width: 100% !important;
}
.tools-tab .container {
  width: 100% !important;
  padding: 2rem 8rem;
}
@media only screen and (max-width: 576px) {
  .tools-tab .container {
    padding: 2rem 2rem;
  }
}

.tools-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 576px) {
  .tools-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.tab-card {
  background: white !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  text-align: center;
  border-radius: 10px;
}
.tab-card a {
  display: block;
  padding: 12px 20px;
  border-radius: 10px;
  color: black;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.tab-content.active {
  display: block;
}

footer {
  background: white;
}
footer .footer-links .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
footer .footer-links .container a {
  color: black;
  text-decoration: none;
}

.compression-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.compression-options #check-info-message {
  font-size: 16px;
  margin: 10px 0px;
  color: #000000;
  font-weight: 400;
}
.compression-options .compression-options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 400px;
  /* ✅ Slider + Value ko ek hi line pe laane ke liye */
}
@media only screen and (max-width: 576px) {
  .compression-options .compression-options-container {
    width: 250px;
  }
}
.compression-options .compression-options-container .enable-messages-contianer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #131313;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.compression-options .compression-options-container .enable-messages-contianer input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #067d41;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.compression-options .compression-options-container .enable-messages-contianer input[type=checkbox]:checked {
  background-color: #067d41;
  border-color: #067d41;
}
.compression-options .compression-options-container .enable-messages-contianer input[type=checkbox]:checked::after {
  content: "✔";
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 3px;
}
.compression-options .compression-options-container .enable-messages-contianer #check-message {
  font-size: 14px;
  color: black;
}
.compression-options .compression-options-container .quality-slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.compression-options .compression-options-container .quality-slider-container #qualitySlider {
  -webkit-appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(58, 58, 58) 0%, #067d41 100%);
  outline: none;
  transition: background 0.3s ease;
}
.compression-options .compression-options-container .quality-slider-container #qualitySlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #067d41;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}
.compression-options .compression-options-container .quality-slider-container #qualitySlider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.compression-options .compression-options-container .quality-slider-container #qualitySlider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #067d41;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.compression-options .compression-options-container .quality-slider-container #qualityValue {
  font-size: 15px;
  font-weight: 500;
  color: black;
  min-width: 50px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */