
#containers {
    text-align: center;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5);
    width: 80%;
    max-width: 400px;
}

.drop-area {
    border: 2px dashed #00ffff;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    background: #00ffff;
    color: #121212;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #009999;
}

textarea {
    width: 100%;
    height: 150px;
    margin-top: 10px;
    background: #1e1e1e;
    color: #fff; /* ✅ Extracted text will be white */
    border: 1px solid #00ffff;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
  margin: 0;
  padding: 20px;
}

/* Typography */
h1, h2, h3, h5 {
  color: #00d9ff !important;
}

.text-white-50 {
  color: #999 !important;
}

.description {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #ccc;
}

/* Container Styling */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Tool Box */
.tool-box {
  background-color: #1a1a1a;
  border: 1px solid #00bcd4;
  box-shadow: 0 0 10px #00bcd4aa;
  border-radius: 10px;
  padding: 20px;
}

/* Drop Area */
#drop-area {
  border: 2px dashed #00bcd4;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
  cursor: pointer;
}

#drop-area:hover {
  background-color: #111;
}

#drop-area label {
  color: #00bcd4;
  cursor: pointer;
}

/* Image Preview */
.preview img {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

/* Buttons */
button,
a#download-btn,
#remove-bg-btn {
  background-color: #00bcd4;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 10px;
}

button:hover,
a#download-btn:hover,
#remove-bg-btn:hover {
  background-color: #03a9f4;
}

/* Step Box Styling */
.step-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #1a1a1a;
  padding: 15px;
  border-left: 4px solid #00bcd4;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,188,212,0.2);
}

.step-number {
  background-color: #00bcd4;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Step Boxes */
.step-box {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  text-align: left;
}
.step-number {
  width: 35px;
  height: 35px;
  background-color: #58a6ff;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

/* Contact Section */
.contact-section {
  background-color: #121212;
  padding: 40px 20px;
  text-align: center;
}
.contact-heading {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}
.contact-text {
  color: #cccccc;
  margin-bottom: 10px;
}
.contact-email {
  display: inline-block;
  background-color: #58a6ff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.contact-email:hover {
  background-color: #4092ed;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .step-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 10px;
  }

  .image-preview img {
    max-height: 300px;
  }
}
.tool-box {
  background-color: #0d1117; /* Dark elegant background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 50px auto;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(88, 166, 255, 0.4); /* Soft blue glow */
}
/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #00bcd4;
  display: block;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #1a1a1a;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border: 1px solid #00bcd4;
    border-radius: 10px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
