body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #11882f, #a6ffff);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #15bb68, #0b522b);
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.mic-icon {
  width: 60px;
  height: 60px;
  margin: 20px auto;
  background-color: #ffffff00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  z-index: 100;
}

.mic-icon.clicked {
  transform: scale(0.9);
  z-index: 100;
}

.mic-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  z-index: 100;
}

.mic-icon:hover {
  transform: scale(1.1);
  z-index: 100;
}

.mic-icon:active {
  transform: scale(0.9);
  z-index: 100;
}

.mic-icon svg {
  width: 30px;
  height: 30px;
  z-index: 100;
}

.button-container {
  margin-top: 20px;
  z-index: 100;
}

button {
  margin: 10px;
  padding: 15px 30px;
  font-size: 1rem;
  color: #000;
  background-color: #085af3;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  z-index: 1000;
}

button:hover {
  background-color: #085af3;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 20px;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-bar button {
  padding: 10px 20px;
  background-color: #085af3;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  cursor: pointer;
}

.cookie-bar button.reject {
  background-color: #888;
}

canvas {
  z-index: -1;
  margin-top: -150px;
  height: 400px;
  /* Adjust the height as needed */
  width: 400px;
  /* Adjust the width as needed */
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: 100% 100%;
  background-color: #ffffff;
  z-index: -1;
}

.container {
  position: relative;
  padding: 1em;
  margin-top: 5em;
}

.title {
  font-size: 2em;
  font-weight: bold;
  margin: 0.5em 0;
}

.subtitle {
  font-size: 1em;
  margin-bottom: 0.8em;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 0.8em;
  margin-bottom: 1em;
}

.button {
  padding: 0.8em 1.5em;
  font-size: 1em;
  border: 2px solid white;
  background: white;
  color: rgb(0, 0, 0);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
}

.buttonaa {
  padding: 0.8em 1.5em;
  font-size: 1em;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0);
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
}

.buttona {
  padding: 0.8em 1.5em;
  font-size: 1em;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
  border: 2px solid white;
}

.buttona:hover {
  background-color: rgb(4, 155, 224);
  color: black;
  border-color: rgb(4, 155, 224);
}

.buttonaa:hover {
  background: white;
  color: black;
}

.button:hover {
  background: white;
  color: black;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
  margin: 0 auto;
  max-width: 1200px;
}

.card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: url("https://vapi.ai/assets/CardDots-ea463119.svg") no-repeat
    center center;
  background-size: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  margin: 0.5em 0;
  font-size: 1.2em;
}

.card p {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
}

.navbar {
  width: 100%;
  background-color: #00000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: top 0.3s;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-right: 50px;
}

.navbar-logo {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-item {
  margin: 0;
}

.navbar-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-link:hover {
  color: #4bc6ca;
}

/* Common styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000;
  color: white;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #000000, #021331);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #085af3, #a6ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
  color: #888;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(8, 90, 243, 0.3);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #021331, #a6ffff);
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.plan-price {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #085af3;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  margin: 15px 0;
  color: #ccc;
}

.plan-button {
  background: linear-gradient(90deg, #085af3, #4bc6ca);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.plan-button:hover {
  transform: scale(1.05);
}

/* Contact Form Styles */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #021331, #000000);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #085af3, #a6ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #012466;
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background: linear-gradient(90deg, #085af3, #4bc6ca);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
  justify-self: center;
}

.submit-button:hover {
  transform: scale(1.05);
}

.success-message {
  display: none;
  text-align: center;
  color: #4bc6ca;
  margin-top: 20px;
}

.footer {
  background: linear-gradient(180deg, #000000, #00123d);
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #085af3, #a6ffff);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #085af3, #a6ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: #888;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s;
}

.social-link:hover {
  transform: translateY(-3px);
  background: #085af3;
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #4bc6ca;
  transform: translateX(5px);
}

.footer-newsletter {
  margin-top: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.newsletter-input:focus {
  outline: none;
  border-color: #085af3;
}

.newsletter-button {
  padding: 12px 24px;
  background: linear-gradient(90deg, #085af3, #4bc6ca);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}

.newsletter-button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #888;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #4bc6ca;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
