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

/* Body */
body {
  font-family: Arial, sans-serif;
  background: #f9fafc;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #0d2538;
  padding: 15px 20px;
  text-align: center;
}

.navbar h1 {
  color: #fff;
  font-size: 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  background: white;
  color: #007bff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.hero button:hover {
  background: #f0f0f0;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.feature {
  background: white;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
}

.feature h3 {
  margin-bottom: 10px;
  color: #007bff;
}

/* Footer */
footer {
  background: #0d2538;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
/* Logo */
.logo {
  float: left;
  margin-right: 10px;
  border-radius: 50%;
}

/* Navbar links */
.navbar nav {
  margin-top: 10px;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
}

.navbar nav a:hover {
  text-decoration: underline;
}
/* Logo */
.logo {
  float: left;
  margin-right: 10px;
  border-radius: 50%;
}

/* Navbar links */
.navbar nav {
  margin-top: 10px;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
}

.navbar nav a:hover {
  text-decoration: underline;
}
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero button {
  background: #ff4b2b;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.hero button:hover {
  background: #ff6b4a;
}
/* Features Section Cards Style */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: #f9f9f9;
  flex-wrap: wrap; /* mobile ke liye automatic adjust */
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature h3 {
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  color: #666;
  font-size: 14px;
}

/* Hover effect */
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
/* Hero Section Style */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  background: #ff0000;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero button:hover {
  background: #cc0000;
  transform: scale(1.05);
}
/* Navbar Style */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.navbar h1 {
  font-size: 20px;
  color: #333;
  margin: 0;
  flex-grow: 1;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #ff0000;
}
/* Footer Style */
footer {
  background: #1e1e1e;
  color: #aaa;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 14px;
}

footer p {
  margin: 0;
}

footer p:hover {
  color: #fff;
  transition: color 0.3s ease;
}
/* Contact Section */
.contact-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #ff4d4d;
}

.contact-section p {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

form input,
form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #ff4d4d;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
}

form button {
  background: #ff4d4d;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #e60000;
}
/* Keyword Tool */
.keyword-tool {
  max-width: 600px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.keyword-tool h2 {
  margin-bottom: 10px;
  color: #ff4d4d;
}

.keyword-tool p {
  margin-bottom: 15px;
  color: #555;
}

.keyword-tool input {
  padding: 10px;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 5px;
}

.keyword-tool button {
  padding: 10px 15px;
  background: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.keyword-tool button:hover {
  background: #e60000;
}

#suggestionsList {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

#suggestionsList li {
  background: #f9f9f9;
  padding: 8px;
  margin: 5px 0;
  border-radius: 5px;
  transition: 0.3s;
}

#suggestionsList li:hover {
  background: #ffe6e6;
}


