/* HERO SECTION */
.hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 30px;
  }
}

/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #1e40af;
  color: #fff;
  font-size: 18px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.navbar a:hover {
  text-decoration: underline;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}
/* TOOL CARDS */
.tool-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: white;
  width: 260px;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card a {
  text-decoration: none;
  color: #1f2937;
}

.card-icon {
  font-size: 48px;
  color: #2563eb;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 22px;
  margin: 12px 0 6px;
}

.card p {
  font-size: 15px;
  color: #555;
}


* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  color: #1f2937;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: white;
  padding: 25px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}

/* MAIN CARD */
.container {
  max-width: 1000px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

button {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,99,235,0.4);
}

/* INPUTS */
input[type="file"],
input[type="text"] {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  margin: 15px 0;
  font-size: 16px;
}

/* ICON BOX */
.tool-box {
  text-align: center;
  margin-bottom: 20px;
}

.tool-box i {
  font-size: 50px;
  color: #2563eb;
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  font-size: 14px;
  color: #6b7280;
}

footer a {
  margin: 0 10px;
  color: #2563eb;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 25px;
  }

  .btn-group {
    flex-direction: column;
  }
}
#fileList {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#fileList li {
  padding: 12px;
  margin-bottom: 10px;
  background: #f1f5f9;
  border-radius: 8px;
  cursor: move;
  font-size: 15px;
 }
@media (max-width: 768px) {
  .tool-cards {
    flex-direction: column;
    align-items: center;
 }
}
.card.coming {
  opacity: 0.6;
  pointer-events: none;
 }
.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.site-footer h4 {
  color: white;
  margin-bottom: 10px;
}

.site-footer a {
  color: #9ca3af;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

.copy {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #9ca3af;
 }
.ad-native {
  margin-top: 30px;
  text-align: center;
  min-height: 250px;
 }
 .ad-top {
  text-align: center;
  margin: 15px 0;
  min-height: 90px;
 }
.seo-text {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  color: #444;
 }
.internal-links {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
}

.internal-links ul {
  list-style: none;
  padding: 0;
}

.internal-links li {
  margin-bottom: 8px;
}

.internal-links a {
  color: #1a73e8;
  text-decoration: none;
 }
.ad-box {
  max-width: 320px;
  max-height: 300px;
  overflow: hidden;
  margin: 25px auto;
  text-align: center;
 }
