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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #000;
}



.hero {
  position: relative;
  text-align: center;
 
  background-image: url(/assets/img/voicedemo.webp);
  background-size: cover;
  background-position: center;
  margin: 48px;
  margin-bottom: 0px;
}

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

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 64px;
  color: #070626;
  margin-bottom: 16px;
}

.hero .subtext {
  font-size: 20px;
  font-weight: 500;
 margin-bottom: 40px !important;
  color: #7b7b7b;

  line-height: 28px;
}

.talk-btn {
  background-color: #0e0e2c;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.talk-btn:hover {
  opacity: 0.9;
}

.features-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 30px 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #070626;
  font-size: 16px;
  line-height: 32px;
}

.feature-item i {
  font-size: 1.2rem;
  color: #070626;
}

/* Vertical Divider */
.divider {
  width: 1px;
  height: 20px;
  background-color: #dcdcdc;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .features-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .divider {
    display: none;
  }

  .feature-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 0px !important;
    margin: 0px !important;
    margin-top: 52px !important;
  }

  .hero h1 {
    font-size: 24px !important;
    font-weight: 600;
    line-height: 150% !important;
    color: #070626 !important;
  }

  .hero .subtext {
    font-size: 16px !important;
    font-weight: 500  !important;
    line-height: 28px !important;
   }


    .talk-btn {
    padding: 12px 28px !important;
    font-size: 12px !important;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    padding: 80px 20px 50px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtext {
    font-size: 1rem;
  }

  .talk-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 16px 40px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .subtext {
    font-size: 0.95rem;
  }

  .talk-btn {
    font-size: 0.9rem;
  }

 

  .feature {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .subtext {
    font-size: 0.875rem;
  }

  .talk-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
