body {
  margin:0;
  font-family:Poppins;
  background:#f4f6ff;
}

.navbar {
  display:flex;
  justify-content:space-between;
  padding:15px 30px;
  background:#4f46e5;
  color:white;
}

.navbar a {
  color:white;
  margin-left:15px;
  text-decoration:none;
}

.container {
  max-width:900px;
  margin:auto;
  padding:20px;
}

.card {
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.upload-box {
  border:2px dashed #ccc;
  padding:30px;
  text-align:center;
  cursor:pointer;
}

button {
  width:100%;
  padding:12px;
  background:#4f46e5;
  color:white;
  border:none;
  margin-top:10px;
}

.compare {
  display:flex;
  gap:10px;
  margin-top:20px;
}

/* HERO */

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

.hero p {
  color:#666;
}

/* FILTER BUTTONS */
.filters {
  margin-top:20px;
}

.filters .active {
  background:#4f46e5;
  color:white;
}

/* TOOLS GRID */
.tools-container {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:20px;
  padding:30px;
}

.tool-card {
  background:white;
  padding:20px;
  border-radius:12px;
  text-align:center;
  text-decoration:none;
  color:black;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.tool-card:hover {
  transform:translateY(-5px);
}

.icon {
  font-size:40px;
  margin-bottom:10px;
}

/* INFO SECTION */
.info-section {
  max-width:900px;
  margin:40px auto;
  padding:20px;
  text-align:center;
}

.info-section ul {
  list-style:none;
  padding:0;
}

/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg,#eef2ff,#f8fafc);
}

/* NAVBAR */
.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  background:#4f46e5;
  color:white;
}

.navbar nav a {
  color:white;
  margin-left:15px;
  text-decoration:none;
}

/* HERO */
.hero {
  text-align:center;
  padding:50px 20px;
}

/* FILTERS FIX */

.filters button {
  display:inline-block;   /* 🔥 FIX */
  width:auto;             /* 🔥 FIX */
  padding:8px 16px;
  border:none;
  margin:5px;
  border-radius:20px;
  background:#e5e7eb;
  cursor:pointer;
}

.filters .active {
  background:#4f46e5;
  color:white;
}

/* GRID FIX */
.tools-container {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:20px;
  padding:30px;
  max-width:1100px;
  margin:auto;
}

/* CARD */
.tool-card {
  display:block;
  background:white;
  padding:20px;
  border-radius:16px;
  text-align:center;
  text-decoration:none;
  color:black;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.tool-card:hover {
  transform:translateY(-5px);
}

/* ICON */
.icon {
  font-size:40px;
  margin-bottom:10px;
}

/* FOOTER */
/* FOOTER */
.footer {
  background:#111827;
  color:#fff;
  margin-top:50px;
}

.footer-container {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:30px;
  padding:40px;
  max-width:1100px;
  margin:auto;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom:10px;
}

.footer-col p {
  color:#9ca3af;
}

.footer-col ul {
  list-style:none;
  padding:0;
}

.footer-col ul li {
  margin:8px 0;
}

.footer-col ul li a {
  color:#9ca3af;
  text-decoration:none;
}

.footer-col ul li a:hover {
  color:#fff;
}

.footer-bottom {
  text-align:center;
  padding:15px;
  border-top:1px solid #374151;
  font-size:14px;
  color:#9ca3af;
}

.filters button {
  width: auto !important;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  background: #e5e7eb;
  margin: 5px;
  cursor: pointer;
  border: none;
}

.filters {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.filters button:hover {
  background: #d1d5db;
}

.filters .active {
  background: #4f46e5;
  color: white;
}

.faq-container {
  padding: 60px 20px;
  background: #f4f6f9;
  font-family: Arial, sans-serif;
}

.faq-box {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-box h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.faq-intro {
  color: #666;
  margin-bottom: 25px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 10px 0;
  color: #555;
}

.faq-cta {
  margin-top: 30px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary:hover {
  background: #1e40af;
}


.blog-container {
  padding: 60px 20px;
  background: #f9fafb;
}

.blog-box {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.blog-box h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.blog-intro {
  color: #555;
  margin-bottom: 25px;
  font-size: 17px;
}

.blog-box h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 22px;
}

.blog-box p {
  color: #444;
  line-height: 1.7;
}

.blog-box ul {
  margin-left: 20px;
  line-height: 1.8;
}

.blog-box a {
  color: #2563eb;
  text-decoration: none;
}

.blog-box a:hover {
  text-decoration: underline;
}

.blog-cta {
  margin-top: 30px;
  padding: 20px;
  background: #eef4ff;
  border-radius: 10px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1e40af;
}

.blog-container {
  padding: 60px 20px;
  background: #f9fafb;
}

.blog-box {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.blog-box h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.blog-intro {
  color: #555;
  margin-bottom: 25px;
  font-size: 17px;
}

.blog-box h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 22px;
}

.blog-box p {
  color: #444;
  line-height: 1.7;
}

.blog-box ul {
  margin-left: 20px;
  line-height: 1.8;
}

.blog-cta {
  margin-top: 30px;
  padding: 20px;
  background: #eef4ff;
  border-radius: 10px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1e40af;
}
/*.seo-section {*/
/*  padding: 50px 20px;*/
/*  background: #f9fafb;*/
/*}*/

/*.seo-section .container {*/
/*  max-width: 900px;*/
/*  margin: auto;*/
/*}*/

/*.seo-section h2 {*/
/*  font-size: 28px;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.seo-section h3 {*/
/*  margin-top: 25px;*/
/*  margin-bottom: 10px;*/
/*}*/

/*.seo-section p {*/
/*  color: #555;*/
/*  line-height: 1.7;*/
/*}*/

/*.seo-section ul,*/
/*.seo-section ol {*/
/*  margin-left: 20px;*/
/*  line-height: 1.8;*/
/*}*/

.site-header {
  background: #ffffff;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  margin-right: 8px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
}