html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: black;
  color: #e6e6e6;
  overflow-x: hidden;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  /* Mobile Navigation */
  nav {
    padding: 10px 15px;
    flex-direction: column;
    gap: 10px;
  }
  
  nav h1 {
    font-size: 1.5rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .nav-links a {
    padding: 8px 12px;
    text-align: center;
  }
  
  /* Mobile Hero */
  .hero {
    height: 80vh;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-buttons a {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  /* Mobile Features */
  .features {
    padding: 40px 20px;
  }
  
  .features h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  /* Mobile Footer */
  footer {
    padding: 30px 20px;
    text-align: center;
  }
  
  footer .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-overlay {
  color: #f0f0f0;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  margin-bottom: 10px;
  animation: fadeIn 2s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 25px;
  animation: fadeIn 3s ease;
}

.hero-cta {
  display: inline-block;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1rem;
  color: black;
  background-color: #a5d610;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  animation: fadeIn 4s ease;
}

.hero-cta:hover {
  background-color: #c0ef2b;
  color: black;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

nav {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 10px rgba(165, 214, 16, 0.4);
}

nav h1 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  margin: 0;
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: #a5d610;
  color: black;
}

.quote {
  background: rgba(255, 255, 255, 0.05);
  color: #a5d610;
  padding: 30px;
  text-align: center;
  font-style: italic;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
}

.features, .testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 40px;
  background: #111;
}

.feature {
  background: #1a1a1a;
  color: #e6e6e6;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(165, 214, 16, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: #2a2a2a;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #a5d610;
}

.feature h3 {
  color: #a5d610;
  margin-top: 0;
}

.feature p {
  margin-bottom: 20px;
}

.feature-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #a5d610;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.feature-link:hover {
  background-color: #c0ef2b;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #0f0f0f;
  color: #999;
}

.chatbox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  width: 300px;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(165, 214, 16, 0.5);
  z-index: 100;
}

.chat-header {
  background: #3a4d00;
  color: white;
  padding: 10px;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chat-messages {
  flex: 1;
  padding: 10px;
  height: 200px;
  overflow-y: auto;
  font-size: 0.9rem;
}

.chat-input {
  display: flex;
  border-top: 1px solid #444;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  background: #111;
  color: white;
  border: none;
}

.chat-input input::placeholder {
  color: #ccc;
}

.chat-input button {
  padding: 10px;
  background: #a5d610;
  color: black;
  border: none;
  cursor: pointer;
}

.chat-input button:hover {
  background: #c0ef2b;
}

.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #3a4d00;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 10px #a5d610;
  z-index: 101;
}

@media (max-width: 500px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .features, .testimonials {
    padding: 20px;
  }
  .chatbox {
    width: 90%;
    right: 5%;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Hero buttons container */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Secondary hero CTA */
.hero-cta.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #a5d610;
}

.hero-cta.secondary:hover {
  background-color: rgba(165, 214, 16, 0.2);
  color: white;
}

/* Highlight link in nav */
.nav-links a.highlight-link {
  background-color: #a5d610;
  color: black;
}

.nav-links a.active {
  border-bottom: 2px solid #a5d610;
}

/* Testimonials section */
.testimonials-section, .features-section, .cta-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  color: #a5d610;
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.testimonial {
  background: #1a1a1a;
  color: #e6e6e6;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}

.testimonial-rating {
  color: #a5d610;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial-author {
  font-style: italic;
  margin-top: 15px;
  text-align: right;
  color: #a5d610;
}

/* Call to action section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a, #333);
  position: relative;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #a5d610;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #a5d610;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 20px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #c0ef2b;
}

/* Footer styles */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #a5d610;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a5d610;
}

.footer-copyright {
  color: #666;
  font-size: 0.9rem;
}

/* Add responsive styles */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    width: 80%;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}
