/* General Styles */
:root {
  --neon-green: #00ff41;
  --neon-cyan: #00ffff;
  --neon-pink: #ff00ff;
  --dark-bg: #000000;
  --dark-card: rgba(10, 10, 10, 0.7);
}

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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--dark-bg);
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Parallax Container */
.parallax-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Matrix Canvas */
.matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5; /* Reduced opacity for better readability */
}

/* Neon Text Effects */
.neon-text-green {
  color: var(--neon-green);
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.neon-text-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}

.neon-text-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.8);
}

/* Language Selector */
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 100;
}

.language-btn {
  background: rgba(0, 0, 0, 0.7);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-btn:hover, .language-btn.active {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

/* Section Styles */
.section {
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
}

/* Hero Section */
.hero-section {
  justify-content: center;
  text-align: center;
  padding-top: 150px; /* Adjusted for fixed nav */
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
}

.logo-container {
  margin-bottom: 30px;
}

.logo {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.main-title {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.cyberpunk-button {
  background: rgba(0, 0, 0, 0.7);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 12px 25px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cyberpunk-button:hover {
  background: rgba(0, 255, 65, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

/* Grid Container for Cards */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

/* Service Card - Simplified */
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
  cursor: pointer;
  height: 300px; /* Fixed height for consistency */
}

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card-description {
  font-size: 1rem;
}

/* Card Detail (Hover Effect) - Simplified */
.card-detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  text-align: left;
}

.service-card:hover .card-detail {
  opacity: 1;
}

.card-detail-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.card-detail-icon {
  font-size: 2rem;
  margin-right: 15px;
}

.card-detail-title {
  font-size: 1.3rem;
  margin: 0;
}

.card-detail-content {
  margin-bottom: 20px;
}

.card-detail-features {
  margin-top: 15px;
}

.card-detail-features h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.card-detail-features ul {
  list-style-type: none;
  padding-left: 10px;
}

.card-detail-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.card-detail-features li:before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
}

/* Tools Section */
.tools-section {
  min-height: 80vh;
  padding-top: 120px; /* Adjusted for fixed nav */
}

.tools-container {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.tools-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 255, 65, 0.3);
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.tab-button {
  background: rgba(20, 20, 20, 0.7);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.tab-button.active {
  background: rgba(0, 255, 255, 0.2);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.tools-content {
  position: relative;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tool-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
}

.tool-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tool-textarea, 
.tool-input {
  width: 100%;
  padding: 12px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--neon-green);
  color: #e0e0e0;
  border-radius: 4px;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  resize: vertical;
  min-height: 100px;
  box-sizing: border-box;
}

.tool-input {
  min-height: auto;
}

.tool-output {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--neon-pink);
}

.tool-button {
  align-self: flex-start;
  margin-top: 5px;
  margin-bottom: 5px;
}

.tool-select-container {
  position: relative;
  width: 200px;
}

.tool-select {
  width: 100%;
  padding: 10px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--neon-green);
  color: #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
}

.tool-select-container::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--neon-green);
  pointer-events: none;
}

.password-options {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.password-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.password-option input {
  cursor: pointer;
}

.password-length {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.password-slider {
  flex: 1;
  height: 5px;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}

.password-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.password-length-value {
  font-size: 1.2rem;
  font-weight: bold;
}

.password-result {
  display: flex;
  gap: 10px;
}

.password-result .tool-input {
  flex: 1;
}

.cyberpunk-button-small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

/* SSH Key Generator */
.ssh-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.ssh-option-group {
  flex: 1;
  min-width: 200px;
}

.ssh-option-label {
  display: block;
  margin-bottom: 8px;
  color: var(--neon-cyan);
  font-size: 0.9rem;
}

.ssh-key-output {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ssh-key-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ssh-key-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ssh-key-header h4 {
  margin: 0;
}

.ssh-key-warning {
  text-align: center;
  padding: 10px;
  border: 1px dashed var(--neon-pink);
  background: rgba(255, 0, 255, 0.1);
  border-radius: 4px;
}

/* SSL Certificate Helper */
.ssl-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ssl-step-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.ssl-option-group {
  margin-bottom: 15px;
}

.ssl-option-label {
  display: block;
  margin-bottom: 8px;
  color: var(--neon-cyan);
  font-size: 0.9rem;
}

.ssl-dns-records {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ssl-dns-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-family: 'Orbitron', monospace;
}

.ssl-dns-table th,
.ssl-dns-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--neon-green);
}

.ssl-dns-table th {
  background: rgba(0, 255, 65, 0.2);
  color: var(--neon-cyan);
}

.ssl-dns-table td {
  background: rgba(0, 0, 0, 0.4);
}

.ssl-dns-note {
  padding: 10px;
  border-left: 3px solid var(--neon-pink);
  background: rgba(255, 0, 255, 0.1);
}

.ssl-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.ssl-commands {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ssl-commands-output {
  height: 300px;
  font-family: 'Courier New', monospace;
  background: rgba(0, 0, 0, 0.8);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 15px;
}

.ssl-renewal-info {
  padding: 15px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 4px;
}

.ssl-renewal-info h5 {
  margin-top: 0;
  margin-bottom: 10px;
}

.cyberpunk-button-secondary {
  background: rgba(50, 50, 50, 0.8);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cyberpunk-button-secondary:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* About Section */
.about-section {
  text-align: center;
  padding-top: 120px; /* Adjusted for fixed nav */
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.turing-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.about-text {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.about-text p {
  margin-bottom: 15px;
}

.about-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.about-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.about-list li:before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
}

/* Contact Section */
.contact-section {
  padding-top: 120px; /* Adjusted for fixed nav */
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

.contact-locations {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-location {
  background: var(--dark-card);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.location-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.location-details {
  font-size: 1rem;
}

.location-details p {
  margin-bottom: 5px;
}

.location-name {
  font-weight: bold;
  margin-bottom: 10px;
}

.location-name-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.location-name-ar {
  font-size: 3.5rem;
  margin-bottom: 5px;
  color: var(--neon-green);
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.location-name-en {
  font-size: 1.2rem;
  font-weight: bold;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

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

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--neon-green);
  color: #e0e0e0;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
}

.contact-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 50px 20px;
  border-top: 1px solid var(--neon-green);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.footer-contact {
  flex: 1;
  min-width: 200px;
  text-align: right;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 101;
  background: rgba(0, 0, 0, 0.7);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 10px;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section {
    padding: 80px 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cyberpunk-button {
    width: 100%;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .tools-tabs {
    flex-direction: column;
    gap: 10px;
  }
  
  .password-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .password-result {
    flex-direction: column;
  }
  
  .tool-select-container {
    width: 100%;
  }
  
  .ssh-options {
    flex-direction: column;
    gap: 15px;
  }
  
  .ssh-option-group {
    width: 100%;
  }
  
  .ssl-buttons {
    flex-direction: column;
  }
  
  /* Mobile Navigation */
  .nav-menu {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
}


/* Contact Section Specific Styles */
.location-name-container-dubai {
  margin-bottom: 10px; /* Add some space below the names */
}

.location-name-ar-large {
  font-family: 'Noto Naskh Arabic', serif; /* Example Arabic font */
  font-size: 4.5em; /* Significantly larger font size - Increased */
  font-weight: bold;
  color: var(--neon-pink); /* Highlight color */
  line-height: 1.0; /* Adjusted line height */
  margin-bottom: -15px; /* Bring the English name closer - Adjusted */
  text-shadow: 0 0 8px var(--neon-pink), 0 0 15px var(--neon-pink); /* Enhanced shadow */
  display: block; /* Ensure it takes full width */
  text-align: center; /* Center the Arabic text */
}

.location-name-en-below {
  font-size: 0.8em; /* Smaller font size - Adjusted */
  color: var(--neon-cyan); /* Different color */
  margin-top: 0;
  display: block; /* Ensure it takes full width */
  text-align: center; /* Center the English text */
  margin-left: 0; /* Remove indent */
}

/* Ensure Arabic text displays correctly */
[lang="ar"] .location-name-ar-large {
  direction: rtl;
}

/* Add hover effect to store items (example) */
.store-section .card-details {
  display: none; /* Hide details by default */
  position: absolute;
  bottom: 105%; /* Position above the card */
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--neon-pink);
  padding: 15px;
  border-radius: 8px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}

.store-section .card:hover .card-details {
  display: block;
  opacity: 1;
  bottom: 100%; /* Slide up effect */
}

.store-item-button {
  margin-top: 10px;
}

/* Adjust grid for store if needed */
.store-section .grid-container {
  position: relative; /* Needed for absolute positioning of details */
}

.store-section .card {
  position: relative; /* Needed for absolute positioning of details */
}



/* AI Prompt Section Styles */
.ai-prompt-section {
  padding-top: 50px;
  padding-bottom: 70px;
}

.ai-prompt-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.ai-prompt-input-container {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.ai-prompt-input {
  flex: 1;
  min-height: 60px;
  padding: 15px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--neon-cyan);
  color: #e0e0e0;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  resize: vertical;
}

.ai-prompt-button {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
}

.button-icon {
  font-size: 1.2rem;
}

.ai-response-container {
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--neon-pink);
  border-radius: 8px;
  overflow: hidden;
}

.ai-response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 0, 255, 0.1);
  border-bottom: 1px solid var(--neon-pink);
}

.ai-response-header h3 {
  margin: 0;
}

.ai-response-close {
  background: none;
  border: none;
  color: var(--neon-cyan);
  font-size: 1.5rem;
  cursor: pointer;
}

.ai-response-content {
  padding: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.ai-suggested-tools {
  padding: 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggested-tool {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 4px;
  padding: 8px 15px;
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.suggested-tool:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Tools Categories Section */
.tools-categories-section {
  padding-top: 50px;
  padding-bottom: 100px;
}

.tools-categories-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.tools-category {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.category-title {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.tool-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--neon-cyan);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

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

.tool-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.tool-card-title {
  color: var(--neon-cyan);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.tool-card-description {
  font-size: 0.9rem;
  margin: 0;
}

/* Tool Content Section */
.tool-content-section {
  padding-top: 50px;
  padding-bottom: 100px;
}

.tool-content-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.tool-content-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tool-content-body {
  min-height: 400px;
}

/* Tools Hero Section */
.tools-hero-section {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ai-prompt-input-container {
    flex-direction: column;
  }
  
  .ai-prompt-button {
    width: 100%;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .tool-content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
