/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
}

body {
  background: #f4f7fb;
  color: #0f172a;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

/* GRID (HOME PAGE) */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* TOOL CARD */
.tool-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.tool-card p {
  color: #475569;
  margin-bottom: 20px;
}

/* INPUTS */
label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* BUTTONS */
button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 16px;
}

.primary-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,99,235,0.35);
}

.dark-btn {
  background: #0f172a;
  color: white;
}

.dark-btn:hover {
  background: #020617;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}
.footer {
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
  color: #666;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #2563eb;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn {
  background: #ffffff;
  color: #2563eb;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.secondary-btn {
  background: transparent;
  color: #ffffff;
  padding: 14px 28px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.primary-btn:hover,
.secondary-btn:hover {
  opacity: 0.9;
}
/* Tool card CTA buttons */
.tool-card a {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #2563eb;
  background: #eaf0ff;
  transition: all 0.2s ease;
}

.tool-card a:hover {
  background: #2563eb;
  color: #ffffff;
}
/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #2563eb;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

.nav-links a:hover {
  color: #2563eb;
}
.hero {
  padding: 90px 20px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.hero p {
  max-width: 650px;
  margin: auto;
  font-size: 18px;
  opacity: 0.95;
}

.hero-buttons {
  margin-top: 30px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 8px;
}

.primary-btn {
  background: white;
  color: #2563eb;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1000px;
  margin: 60px auto;
  gap: 30px;
  padding: 0 20px;
  text-align: center;
}

.feature h3 {
  margin-top: 12px;
  font-size: 18px;
}

.feature p {
  font-size: 14px;
  color: #6b7280;
}
.adsense-box {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}
