/* 🔹 Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b0c2a;
  padding: 15px 30px;
  color: #18b2cd;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.logo img{
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: rgb(85, 14, 122);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #ff0044;
}

/* 🔹 Mobile Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* 🔹 Hero Section Styling */
.hero {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(135deg, #1d1e33, #0b0c2a);
  color: rgb(72, 37, 188);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1000px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #1c7ea8;
}
p{
  text-align: center;
}

.button-group {
  text-align: center;
  margin-top: 10px;
}

.button-group .btn {
  display: inline-block;
  margin: 5px;
}


/* 🔹 Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0b0c2a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
 

  .menu-toggle {
    display: block;
    color: rgb(4, 65, 149);
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
      transform: translateX(0);
    }
  }
  
  .slider {
    animation: slide 10s infinite;
  }





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #289ec6;
  color: #2f0d9d;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
  color: #d02525;
}

header p {
  font-size: 1.1rem;
  color: #846060;
  margin-top: 10px;
}

.tool-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: rgb(107, 243, 216);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(186, 112, 112, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-logo {
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tool-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #cedf38;
}

.tool-category {
  font-size: 0.9rem;
  color: #2c0886;
  margin-bottom: 10px;
}

.visit-btn {
  display: inline-block;
  padding: 8px 14px;
  background-color: #3778be;
  color: rgb(101, 60, 199);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

.visit-btn:hover {
  background-color: #731330;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #5c7483;
  color: #a83c3c;
}

.header {
  text-align: center;
  padding: 2rem 1rem;
  background: #109820;
  color: rgb(23, 126, 126);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  background: #1199a3;
  box-shadow: 0 2px 4px rgba(164, 88, 88, 0.05);
}

.filters input,
.filters select {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #1a0787;
  border-radius: 5px;
  min-width: 200px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.tool-card {
  background: hsl(323, 70%, 34%);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(42, 121, 20, 0.05);
  transition: transform 0.2s;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.tool-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.tags span {
  display: inline-block;
  background: #51b346;
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  margin-right: 5px;
  margin-top: 5px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #1e808b;
  color: #e91313;
  line-height: 1.6;
}

.tool-header {
  text-align: center;
  background: #b0169c;
  color: rgb(150, 11, 136);
  padding: 2rem 1rem;
}

.tool-logo {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}

.tool-title {
  font-size: 2rem;
  margin: 0.2rem 0;
}

.tool-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background: #9e5454;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h2 {
  color: #1055de;
  margin-bottom: 0.75rem;
}

ul {
  padding-left: 1.2rem;
}

.tool-pros-cons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.tool-pros-cons .pros,
.tool-pros-cons .cons {
  flex: 1 1 300px;
  background: #922585;
  padding: 1rem;
  border-radius: 8px;
}
.screenshot {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

video {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

blockquote {
  background: #0d91b9;
  border-left: 4px solid #0b40b3;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 6px;
  font-style: italic;
}

a {
  color: #e427ce;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0041c3;
  color: #222;
}

.header {
  background-color: #0057ff;
  color: rgb(201, 21, 21);
  text-align: center;
  padding: 2rem 1rem;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.categories-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.category-card {
  background: #0cad87;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.category-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-card a {
  text-decoration: none;
  color: #0057ff;
}

.category-card a:hover {
  text-decoration: underline;
}

.category-card p {
  color: #444;
  margin: 0.5rem 0 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #222;
}

.blog-header {
  background-color: #0057ff;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.blog-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.blog-list {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}


.blog-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.blog-card h2 a {
  color: #0057ff;
  text-decoration: none;
}

.blog-card h2 a:hover {
  text-decoration: underline;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #333;
}

.admin-header {
  background-color: #1d3557;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.admin-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.admin-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.admin-dashboard {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.admin-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.admin-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1d3557;
}

.admin-card ul {
  list-style: none;
  padding-left: 0;
}

.admin-card ul li {
  margin-bottom: 0.6rem;
}

.admin-card ul li a {
  text-decoration: none;
  color: #0057ff;
  font-weight: 500;
}

.admin-card button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #0057ff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

.admin-card button:hover {
  background-color: #003eaa;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f2f5;
  color: #333;
}

.dashboard-header {
  background-color: #2a2f4f;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.dashboard-header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.dashboard-header p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.dashboard-main {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.dashboard-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 1.5rem;
  transition: 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dashboard-card h2 {
  margin-top: 0;
  color: #2a2f4f;
  font-size: 1.4rem;
}

.dashboard-card p {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
}

.dashboard-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #2a2f4f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.dashboard-link:hover {
  background-color: #1a1d35;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f4f8;
  color: #333;
}

.submit-container {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.submit-container h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2a2f4f;
}

form label {
  display: block;
  margin: 1rem 0 0.3rem;
  font-weight: 500;
}
form input[type=\"text\"],
form input[type=\"url\"],
form input[type=\"file\"],
form textarea,
form select {
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
}

button[type=\"submit\"] {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.8rem;
  background-color: #2a2f4f;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button[type=\"submit\"]:hover {
  background-color: #1d1e3a;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f9fb;
}

.video-tools-section {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

#searchBar {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card h2 {
  margin-top: 0;
  font-size: 20px;
}
.tool-card p {
  color: #444;
}

.tool-card a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
  background: #1e90ff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
}

.tool-card a:hover {
  background: #0066cc;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f0f4f8;
}

.chatbot-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

#searchChatbot {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: rgb(40, 8, 184);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card h2 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}
.tool-card p {
  color: #555;
}

.tool-card a {
  display: inline-block;
  margin-top: 10px;
  background: #007bff;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.tool-card a:hover {
  background: #0056b3;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9fbfd;
}

.writing-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

#searchWriter {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

.tool-card h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.tool-card p {
  color: #444;
}

.tool-card a {
  display: inline-block;
  margin-top: 12px;
  background: #ff5722;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.tool-card a:hover {
  background: #e64a19;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f3f6fa;
}

.logo-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

#searchLogo {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card h2 {
  margin-top: 0;
  font-size: 20px;
}

.tool-card p {
  color: #444;
}

tool-card a {
  display: inline-block;
  margin-top: 10px;
  background: #673ab7;
  color: #c600d4;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}

.tool-card a:hover {
  background: #512da8;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f4f8;
}

.resume-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

#searchResume {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

.tool-card h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.tool-card p {
  color: #444;
}

.tool-card a {
  display: inline-block;
  margin-top: 10px;
  background: #007acc;
  color: #db2929;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}

.tool-card a:hover {
  background: #005f99;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f9;
}

.course-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

#searchCourse {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #00e20f;
  border-radius: 6px;
  font-size: 16px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: rgb(32, 8, 172);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card h2 {
  font-size: 20px;
  margin-top: 0;
}

.tool-card p {
  color: #444;
}
.tool-card a {
  display: inline-block;
  margin-top: 10px;
  background: #009688;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}

.tool-card a:hover {
  background: #00796b;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fc;
}

.voiceover-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

#searchVoice {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: rgb(171, 22, 22);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

.tool-card h2 {
  font-size: 20px;
  margin-top: 0;
}

.tool-card p {
  color: #333;
  margin-bottom: 10px;
}
.tool-card a {
  display: inline-block;
  background: #673ab7;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}

.tool-card a:hover {
  background: #512da8;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #2b498f;
}

.analytics-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}
#searchAnalytics {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: rgb(26, 14, 137);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card img {
  max-height: 50px;
  margin-bottom: 12px;
}

.tool-card h2 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.tool-card p {
  color: #444;
  margin-bottom: 12px;
}

.tool-card a {
  display: inline-block;
  background: #1976d2;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.tool-card a:hover {
  background: #0d47a1;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #d900ff;
}

.codegen-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
p {
  text-align: center;
  color: #444;
  margin-bottom: 30px;
}

#searchCodeGen {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #260796;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card img {
  max-height: 50px;
  margin-bottom: 10px;
}

.tool-card h2 {
  font-size: 18px;
  margin: 8px 0 5px;
}

.tool-card p {
  color: #555;
  margin-bottom: 10px;
}

.tool-card a {
  display: inline-block;
  background: #007acc;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.tool-card a:hover {
  background: #005f9e;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #231acb;
}

.music-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

#searchMusic {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #2ab19b;
  border-radius: 6px;
  font-size: 16px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #2112cb;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

.tool-card img {
  height: 50px;
  margin-bottom: 12px;
}

.tool-card h2 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.tool-card p {
  color: #444;
  margin-bottom: 12px;
}

.tool-card a {
  background: #ff4081;
  color: rgb(0, 125, 63);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.tool-card a:hover {
  background: #1a0792;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #9d0a89;
}

.translation-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #444;
  margin-bottom: 30px;
}

#searchTranslate {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #0d9e0f;
  border-radius: 6px;
  font-size: 16px;
}
tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #0e21cd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

.tool-card img {
  height: 40px;
  margin-bottom: 12px;
}

.tool-card h2 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.tool-card p {
  color: #283ac6;
  margin-bottom: 12px;
}

.tool-card a {
  background: #4caf50;
  color: rgb(82, 47, 223);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.tool-card a:hover {
  background: #388e3c;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #39920a;
}

.business-tools {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #444;
  margin-bottom: 30px;
}

#searchBusiness {
  display: block;
  margin: 0 auto 30px;
  padding: 12px;
  width: 60%;
  border: 1px solid #18b055;
  border-radius: 6px;
  font-size: 16px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #1114c5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

.tool-card img {
  height: 40px;
  margin-bottom: 12px;
}

.tool-card h2 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.tool-card p {
  color: #555;
  margin-bottom: 12px;
}

.tool-card a {
  background: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.tool-card a:hover {
  background: #0056b3;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f4f8;
}

.top-categories {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.top-categories h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.top-categories p {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.category-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card h2 {
  font-size: 18px;
  color: #2779ca;
  margin-bottom: 12px;
}

.category-card ul {
  list-style: none;
  padding-left: 0;
}

.category-card li {
  margin-bottom: 8px;
}

.category-card a {
  text-decoration: none;
  color: #1a73e8;
  font-weight: 500;
  transition: color 0.2s ease;
}
.category-card a:hover {
  color: #0c47a1;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1616b4;
}

.advanced-tools {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.advanced-tools h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.advanced-tools p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  font-size: 1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.category-card {
  background: #0a1087;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ba1414;
}

.category-card ul {
  list-style-type: none;
  padding-left: 0;
}

.category-card li {
  margin-bottom: 8px;
}

.category-card a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  transition: color 0.2s;
}
.category-card a:hover {
  color: #0056b3;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.main-footer {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-branding {
  flex: 1 1 250px;
}

.footer-branding h2 {
  font-size: 28px;
  color: #00e6e6;
}
.footer-branding p {
  color: #ccc;
  font-size: 14px;
  margin-top: 8px;
  max-width: 300px;
}

.footer-links {
  flex: 2 1 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links h3 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #59a02a;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #00ffff;
}

.footer-subscribe {
  flex: 1 1 300px;
}

.footer-subscribe h3 {
  margin-bottom: 10px;
}

.footer-subscribe form {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-subscribe input[type=\"email\"] {
  flex-grow: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
}
.footer-subscribe button {
  background: #082dbe;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-subscribe button:hover {
  background: #00cccc;
}

.footer-social {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.footer-social h3 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.social-icons a {
  display: inline-flex;
  background: #780a0a;
  color: #d0d018;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  background: #00e6e6;
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1da088;
  color: #de1e1e;
  font-size: 13px;
  margin-top: 40px;
}



.tool-list {
  padding: 2rem;
  background: #1d16dd;
  text-align: center;
}

.tool-list h2 {
  margin-bottom: 1.5rem;
  font-size: 28px;
  color: #1770c8;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tool-card {
  background: rgb(40, 178, 70);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: scale(1.03);
}
.tool-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tool-card a {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 16px;
  background: #00e6e6;
  color: #a41515;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}


:root {
  --primary-color: #00e6e6;
  --secondary-color: #49a811;
  --accent-color: #ea26dd;
  --bg-light: #1673a5;
  --bg-dark: #2c7211;
  --text-dark: #53a93d;
  --text-light: #2a2290;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}
header {
  background: linear-gradient(to right, #00e6e6, #0a1baf);
  color: rgb(51, 68, 183);
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #00ff1a;
  font-weight: 500;
}

section {
  padding: 3rem 2rem;
}

h1, h2, h3 {
  color: var(--text-dark);
}

.tool-card {
  background: rgb(219, 25, 219);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(147, 10, 171, 0.436);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: scale(1.05);
}

.tool-card a {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--primary-color);
  color: rgb(215, 25, 164);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.tool-card a:hover {
  background: var(--accent-color);
  color: #176f9b;
}

footer {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  nav a {
    display: block;
    margin: 10px 0;
  }
}

/* ✅ Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}

/* ✅ Header */
header {
  background: #4a00e0;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 26px;
}

/* ✅ Sections */
section {
  padding: 40px 20px;
  text-align: center;
}

section h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* ✅ Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border: none;
  background: #6a00f4;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px;
}

.btn:hover {
  background: #4a00e0;
}

/* ✅ Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
/* ✅ Responsive for Mobile */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 20px;
  }

  section h2 {
    font-size: 18px;
  }

  .btn {
    width: 90%;
    margin: 10px auto;
    display: block;
  }
}


