/* Font setup */
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: #0f0f0f;
  color: white;
  overflow-x: hidden;
  padding-top: 80px;
}

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

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
}

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

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a6ff00;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #a6ff00;
}

.cta-btn {
  padding: 10px 20px;
  border-radius: 25px;
  background-color: #a6ff00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #a6ff00aa;
}

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

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}

.accent {
  color: #a6ff00;
}

.subtext {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #d0d0d0;
}

/* Toolbox form */
.toolbox {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.domain-input {
  padding: 15px 20px;
  width: 100%;
  max-width: 500px;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: white;
  outline: none;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  color: #ccc;
  font-size: 0.95rem;
}

.options label {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

/* Buttons */
.generate-btn, .download-btn {
  background: #a6ff00;
  color: black;
  font-weight: bold;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.generate-btn:hover, .download-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #a6ff00aa;
}

/* Output Card */
.output-card {
  margin-top: 30px;
  max-width: 600px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-left: auto;
  margin-right: auto;
}

.output-card pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #a6ff00;
  text-align: left;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  padding-bottom: 30px;
}

/* How It Works */
.how-it-works {
  margin-top: 50px;
  text-align: center;
  padding: 40px 20px;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #a6ff00;
  letter-spacing: -0.5px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px;
  width: 250px;
  transition: transform 0.3s ease;
}

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

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.step h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.2rem;
}

.step p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Benefits */
.llms-benefits {
  padding: 50px 20px;
  background: transparent;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.left {
  flex: 1 1 600px;
}

.left h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: #a6ff00;
}

.benefit {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.benefit span {
  font-size: 1.5rem;
  color: #a6ff00;
  margin-top: 5px;
}

.benefit h3 {
  margin: 0;
  font-size: 1.2rem;
  color: white;
}

.benefit p {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 4px;
}

.right {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-box {
  background: linear-gradient(135deg, #4e00ff, #a6ff00);
  padding: 30px;
  border-radius: 18px;
  color: white;
  text-align: center;
  max-width: 360px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(166, 255, 0, 0.2);
}

.ai-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.ai-box p {
  font-size: 0.95rem;
  margin-bottom: 25px;
  color: #fff;
}

.stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.stats div {
  font-size: 0.9rem;
  color: #000;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: bold;
  width: 130px;
}

/* FAQ Section */
.faq-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.2rem;
  color: #a6ff00;
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  text-align: left;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: white;
}

.faq-item p {
  font-size: 0.95rem;
  color: #ccc;
}

/* SEO Services */
.seo-help {
  padding: 50px 20px;
  text-align: center;
}

.seo-help h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #a6ff00;
}

.seo-subtext {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.seo-subtext a {
  color: #a6ff00;
  font-weight: bold;
  text-decoration: underline;
}

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

.seo-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  text-align: left;
}

.seo-card h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.2rem;
}

.seo-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.seo-btn {
  display: inline-block;
  margin-top: 30px;
  background: #a6ff00;
  color: black;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.seo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #a6ff00aa;
}
/* ✅ Header Center Navigation + Black Button Text Fix */

/* Desktop */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* All Devices - Button text black */
.cta-btn {
  color: #000 !important;
}

/* Optional: Mobile alignment fix */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 16px;
  }

  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cta-btn {
    margin-top: 10px;
    align-self: center;
  }
}
/* ✅ Glass Header */
.main-header {
  ...
}

/* ✅ Header Center Navigation + Black Button Text Fix */  <-- 👈 Yahaan se paste karo
.nav-container {
  ...
}
/* ✅ Toggle Button Hidden on Desktop */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #a6ff00;
  cursor: pointer;
}

/* ✅ Mobile Menu Hidden */
.nav-menu {
  display: flex;
  gap: 24px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: #000;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 998;
    padding: 16px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cta-btn {
    margin-top: 10px;
  }
  
#validator-section {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #1aff00;
  font-family: 'Inter', sans-serif;
}

#validator-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

#validator-section p {
  font-size: 1rem;
  color: #dddddd;
  margin-bottom: 30px;
}

#validator-section input[type="text"] {
  padding: 12px;
  width: 80%;
  max-width: 400px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
}

#validator-section button {
  background-color: #b422f9;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#validator-section button:hover {
  background-color: #9a1edf;
}


