/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navbar Styles */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    color: #fff;
    padding: 15px 30px;
    position: relative;
  }
  .nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .nav-links li {
    position: relative;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
  }
  .nav-links a:hover {
    color: #1abc9c;
  }
  
  /* Dropdown Menu */
  .dropdown-content {
    display: none;
    position: absolute;
    background: #34495e;
    min-width: 160px;
    top: 100%;
    right: 0;
    list-style: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 5px;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown-content li a {
    padding: 12px 16px;
    display: block;
    color: #fff;
  }
  .dropdown-content li a:hover {
    color: white;
    background: #1abc9c;
  }
  
  /* Header Section */
  .tool-header {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: #fff;
    text-align: center;
    padding: 60px 30px;
    animation: fadeIn 1s ease-in-out;
  }
  .tool-header h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .tool-header p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto;
  }
  .tool-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #fff;
    color: #00aaff;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  .tool-btn:hover {
    background: #1abc9c;
    color: #fff;
  }
  
  /* Tool Section */
  .tool-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
  }
  .tool-section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  color: #00aaff;
  font-weight: 600;
  animation: fadeIn 0.6s ease-in-out;
}

  .tool-box {
    max-width: 600px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: left;
    animation: slideUp 0.7s ease;
  }
  .tool-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .preview-img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  input[type="file"],
  input[type="range"],
  button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  input[type="range"] {
    appearance: none;
    background: #ddd;
    height: 6px;
    border-radius: 3px;
  }
  input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    background: #00aaff;
    border-radius: 50%;
    cursor: pointer;
  }
  .download-btn {
    background-color: #00aaff;
    color: white;
    border: none;
    margin-top: 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  .download-btn:hover {
    background-color: #008ecc;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 25px 10px;
    background: #2c3e50;
    color: #fff;
    margin-top: 40px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  @keyframes slideUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Responsive - Mobile navbar controls removed */
  @media (max-width: 768px) {
    .tool-box {
      padding: 20px;
    }
  }
 /* Extra Tool Info Section */
.tool-info {
  background: #e8f6ff;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid #cceeff;
  animation: fadeIn 0.8s ease;
}

.tool-info h3 {
  font-size: 1.8rem;
  color: #008ecc;
  margin-bottom: 20px;
  font-weight: 600;
}

.tool-info p {
  font-size: 1.05rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.info-features {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 30px auto 0 auto;
  text-align: left;
  font-size: 1rem;
  color: #333;
}

.info-features li {
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
  background: transparent;
}

.info-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00aaff;
  font-weight: bold;
}
 .footer {
  background: #0f172a; /* dark blue/black shade */
  color: #f1f5f9;
  padding: 10px 5px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #38bdf8; /* sky blue heading */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #334155;
  font-size: 14px;
  color: #94a3b8;
}
/* ==== Compact Footer Override ==== */
.footer {
  padding: 24px 16px;
}

.footer-container {
  gap: 16px; 
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* zyada columns fit honge */
}

.footer-column h3 {
  font-size: 16px; 
  margin-bottom: 8px;
}

.footer-column ul li {
  margin: 4px 0; 
}

.footer-column ul li a {
  font-size: 14px; 
  line-height: 1.3;
}

.footer-bottom {
  margin-top: 16px; 
  padding-top: 12px;
  font-size: 13px;
}
/* Internal Section Styling */
.internal {
  background: linear-gradient(135deg, #f9fcff, #e6f2ff);
  border: 1px solid #cfdfff;
  padding: 20px;
  margin: 40px auto;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 720px;
  transition: all 0.3s ease-in-out;
}

.internal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.internal p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.internal a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.internal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #007bff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.internal a:hover {
  color: #0056cc;
}

.internal a:hover::after {
  transform: scaleX(1);
}
