.elementor-697 .elementor-element.elementor-element-29a7e5a{--display:flex;}.elementor-697 .elementor-element.elementor-element-c47d748{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-6f75a0d */:root {
  --primary: #4361ee;
  --secondary: #3f37c9;
  --success: #4cc9f0;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --border: #dee2e6;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --high-traffic: #4CAF50;
  --medium-traffic: #FFC107;
  --low-traffic: #F44336;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#seo-generator {
  width: 100%;
  max-width: 900px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 25px 30px;
  text-align: center;
}

.header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.content {
  padding: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 15px;
}

.input-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--light);
}

.input-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

textarea.input-control {
  min-height: 140px;
  resize: vertical;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 16px 20px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary);
  color: white;
}

.btn-secondary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.loader {
  display: none;
  text-align: center;
  padding: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(67, 97, 238, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto 15px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.result-container {
  display: none;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.result-header {
  margin-bottom: 15px;
}

.result-header h2 {
  font-size: 22px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.keyword-card {
  background: brown;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.keyword-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.keyword-card.high-traffic {
  border-top: 4px solid var(--high-traffic);
}

.keyword-card.medium-traffic {
  border-top: 4px solid var(--medium-traffic);
}

.keyword-card.low-traffic {
  border-top: 4px solid var(--low-traffic);
}

.keyword-text {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
}

.keyword-stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.traffic-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

.traffic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.traffic-dot.high {
  background: var(--high-traffic);
}

.traffic-dot.medium {
  background: var(--medium-traffic);
}

.traffic-dot.low {
  background: var(--low-traffic);
}

.competition {
  background: #e9ecef;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.competition.high {
  background: #ffebee;
  color: #f44336;
}

.competition.medium {
  background: #fff8e1;
  color: #ffa000;
}

.competition.low {
  background: #e8f5e9;
  color: #4caf50;
}

.result-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.copy-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  width: 100%;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-left: 10px;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  color: var(--gray);
  font-size: 14px;
  border-top: 1px solid var(--border);
}

.api-key-section {
  background: #fff8e6;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 4px solid #ffc107;
}

.api-key-section label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.api-key-section .input-control {
  background: white;
}

 /* Form labels */
.form-group label,
.api-key-section label {
color: #000 !important; /* Change to black for better contrast */
}

/* Icon colors to match */
.form-group label i,
.api-key-section label i {
color: var(--primary); /* Keep icons colored */
}

.info-text {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.search-option {
  padding: 12px;
  background: #0f172a;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.search-option i {
  font-size: 20px;
}

.search-option:hover, .search-option.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

@media (max-width: 768px) {

  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .header {
    padding: 20px;
  }
  
  .content {
    padding: 20px;
  }
  
  .keyword-grid {
    grid-template-columns: 1fr;
  }
  
  .search-options {
    grid-template-columns: repeat(2, 1fr);
  }
}/* End custom CSS */