/* Neon Cyberpunk Aesthetic Upgraded */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
  color: #e0e0e0;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

header {
  background: 
    linear-gradient(to bottom, rgba(17,17,17,0.8), rgba(26,26,26,0.95)),
    url('images/skyline.jpg') center/cover no-repeat;
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 1px solid #333;
}  

header h1 {
  font-size: 3.2rem;
  color: #00e6e6;
  animation: glitch 2.5s infinite;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #bbb;
}

main {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

section:hover {
  transform: scale(1.01);
}

h2 {
  color: #00ccff;
  border-bottom: 1px solid #444;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

ul {
  list-style-type: none;
  padding-left: 1rem;
}

ul li::before {
  content: "⟡";
  color: #00ffff;
  padding-right: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #111;
  color: #666;
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid #333;
}

nav {
  background-color: #111;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 999;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.menu li {
  position: relative;
  padding: 0.5rem 0;
}

.menu a {
  color: #00e6e6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
}

.menu a:hover {
  color: #00ffff;
  text-shadow: 0 0 6px #00ffff;
}

.submenu {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  top: 2.5rem;
  left: 0;
  padding: 0.5rem 0;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  border: 1px solid #333;
  min-width: 180px;
  z-index: 1000;
}

.submenu li {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.dropdown:hover .submenu {
  display: block;
}

@keyframes glitch {
  0% { text-shadow: 0 0 2px #0ff, 0 0 5px #0ff; }
  20% { text-shadow: -2px 0 red, 2px 0 blue; }
  40% { text-shadow: 2px 0 red, -2px 0 blue; }
  60% { text-shadow: 0 0 2px #0ff, 0 0 10px #0ff; }
  80% { text-shadow: 1px 0 red, -1px 0 blue; }
  100% { text-shadow: 0 0 2px #0ff, 0 0 5px #0ff; }
}

a {
  color: inherit;
  text-decoration: none;
}

/* 🔹 New Agent Grid Styling */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.agent-card {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}

.agent-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.agent-card h3 {
  color: #00e6e6;
  margin-bottom: 0.5rem;
}

.agent-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* 🔹 New CTA Button Styling */
.cta-button {
  display: inline-block;
  background-color: #00e6e6;
  color: #111;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 230, 230, 0.6);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* 🔹 New Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  color: #00ccff;
}

form input[type="email"],
form textarea {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #444;
  color: #e0e0e0;
  padding: 0.75rem;
  border-radius: 5px;
  transition: border-color 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
}

form input[type="email"]:focus,
form textarea:focus {
  outline: none;
  border-color: #00e6e6;
  box-shadow: 0 0 8px rgba(0, 230, 230, 0.4);
}

form input[type="submit"] {
  background-color: #00e6e6;
  color: #111;
  border: none;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

form input[type="submit"]:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  transform: translateY(-2px);
}