/* Base Reset */

section {
  scroll-margin-top: 100px; /* Adjust if your navbar height is different */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  background-color: #0f0f0f;
  color: #f1f1f1;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #121212, #1a1a1a);
}
.hero h1 {
  font-size: 2.8rem;
  color: #00ffd1;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 209, 0.2);
}
.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 255, 209, 0.4);
}
.btn {
  background-color: #00ffd1;
  color: #000;
}
.btn.secondary {
  background-color: #1a1a1a;
  color: #00ffd1;
  border: 1px solid #00ffd1;
}
.btn.secondary:hover {
  background-color: #00ffd1;
  color: #000;
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #121212;
  text-align: center;
}
.feature h2 {
  font-size: 1.5rem;
  color: #00ffd1;
  margin-bottom: 0.5rem;
}
.feature p {
  color: #ccc;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Demo Section */
.demo {
  background-color: #0f0f0f;
  padding: 4rem 2rem;
  text-align: center;
}
.demo h2 {
  font-size: 2rem;
  color: #00ffd1;
  margin-bottom: 2rem;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 209, 0.2);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Request Form Section */
.request-form {
  padding: 4rem 2rem;
  background-color: #121212;
  text-align: center;
}
.request-form h2 {
  font-size: 2rem;
  color: #00ffd1;
  margin-bottom: 2rem;
}
.request-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.request-form input,
.request-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1rem;
}
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #888;
}
.request-form button {
  background-color: #00ffd1;
  color: #000;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.request-form button:hover {
  background-color: #00c2a5;
  transform: scale(1.03);
}

/* Footer */
footer {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #0f0f0f;
  color: #777;
  font-size: 0.9rem;
}
footer a {
  color: #00ffd1;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .features {
    padding: 3rem 1rem;
  }
  .request-form h2,
  .demo h2 {
    font-size: 1.5rem;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hamburger Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f0f0f;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  color: #00ffd1;
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-list li a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background: #00ffd1;
  margin: 4px 0;
  transition: 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 70px;
    left: -100%;
    background: #121212;
    width: 100%;
    height: calc(100vh - 70px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
  }

  .nav-list.active {
    left: 0;
  }

  .nav-list li {
    margin: 1.5rem 0;
  }
}
.contact-section {
  background-color: #121212;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #00ffd1;
}

.contact-section .about-text {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info {
  color: #ccc;
  margin-bottom: 2rem;
}

.contact-info a {
  color: #00ffd1;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  background-color: #00ffd1;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00c2a5;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
#contact {
  scroll-margin-top: 100px;
}
:target::before {
  content: "";
  display: block;
  height: 100px; /* Adjust to your navbar height */
  margin-top: -100px;
}
html {
  scroll-behavior: smooth;
}
#contact {
  min-height: 400px; /* make sure it has space */
  background: #121212; /* force background to verify */
  color: #fff;
  padding: 3rem 2rem;
}
.contact-section {
  background-color: #121212;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1rem;
}

.contact-info p,
.about-text {
  color: #ccc;
  margin-bottom: 1rem;
}


