body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

.seo-content {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  line-height: 1.6;
  color: #cbd5f5;
}
.logo img {
  height: 45px;
  width: auto;
}
.tool-box{
max-width:700px;
margin:40px auto;
background:#1e293b;
padding:20px;
border-radius:10px;
text-align:center;
}
textarea{
width:100%;
padding:10px;
border-radius:6px;
border:none;
margin-bottom:10px;
}
.c-container{
    padding-left:20px;
    padding-right:20px;
}
/* mobile */
@media (max-width: 600px) {
  .logo img {
    height: 32px;
  }
}
/* NAVBAR BASE */
nav {
  position: sticky;
  top: 0;
  background: #1e293b;
  padding: 15px 20px;
}

/* TOP ROW */
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* MENU ICON */
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #38bdf8;
  text-decoration: none;
}

/* ========================= */
/* DESKTOP */
@media (min-width: 601px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-top {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .menu-icon {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}
.related-tools{
    color: #38bdf8;
    text-decoration: none;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}
.related-tools a{
    color: #38bdf8;
    text-decoration: none;
}

/* ========================= */
/* MOBILE */
@media (max-width: 600px) {
  nav {
    display: block;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: #1e293b;
  }

  .nav-links a {
    padding: 12px;
    border-top: 1px solid #334155;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ========================= */
/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px;
}

/* CARD */
.card {
  background: #1e293b;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  background: #334155;
  transform: translateY(-3px);
}

.card a {
  color: white;
  text-decoration: none;
}

/* ========================= */
/* RESPONSIVE GRID */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #1e293b;
}
footer a{
    color: #38bdf8;
    text-decoration: none; 
}
/* TITLE */
h1 {
  padding-left: 20px;
}