
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background: #f8f9fa;
  color: #000;
  padding: 1rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo img {
  max-height: 50px;
  width: auto;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

header nav ul li {
  margin: 0 1rem;
}

header nav ul li a {
  color: #000;
  text-decoration: none;
}

header .cta-button {
  background: #28a745;  /* Green button */
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#hero {
  position: relative;
  background: url('hero-background.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);  /* Semi-transparent overlay */
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

#hero p {
  color: #fff;
}

#hero .cta-button {
  background: #ffc107;  /* Yellow button */
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#chatbot {
  background: #f8f9fa;  /* Light gray background */
  padding: 2rem 0;
  color: #333;
}

#how-it-works {
  background: #e9ecef;  /* Light gray background */
  padding: 2rem 0;
  color: #333;
}

#benefits {
  background: #f8f9fa;  /* Very light background */
  padding: 2rem 0;
  color: #333;
}

#testimonials {
  background: #fff;  /* White background */
  padding: 2rem 0;
  color: #333;
}

#lead-form {
  background: #f8f9fa;  /* Very light background */
  padding: 2rem 0;
  color: #333;
}

.container {
  width: 80%;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #17a2b8;  /* Teal color for headers */
}

.steps, .benefits, .testimonial-carousel {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.step, .benefit, .testimonial {
  flex: 1;
  margin: 1rem;
  text-align: center;
}

.step i, .benefit i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #17a2b8;  /* Teal color for icons */
}

#lead-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lead-form form label {
  margin-top: 1rem;
  color: #333;
}

#lead-form form input, #lead-form form select, #lead-form form button {
  width: 80%;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

#lead-form form button {
  background: #28a745;  /* Green button */
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 1rem;
}

footer {
  background: #333;
  color: #fff;
  padding: 1rem 0;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

footer a {
  color: #17a2b8;
  text-decoration: none;
}

footer .contact-info, footer .newsletter-signup {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
      width: 90%;
  }

  header nav ul {
      flex-direction: column;
      align-items: center;
  }

  header nav ul li {
      margin: 0.5rem 0;
  }

  .steps, .benefits, .testimonial-carousel {
      flex-direction: column;
      align-items: center;
  }

  .step, .benefit, .testimonial {
      width: 100%;
      margin: 1rem 0;
  }

  #lead-form form input, #lead-form form select, #lead-form form button {
      width: 90%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
      font-size: 2rem;
  }

  header .container {
      flex-direction: column;
      align-items: center;
  }

  header nav ul {
      flex-direction: column;
      align-items: center;
  }

  header nav ul li {
      margin: 0.5rem 0;
  }

  header .cta-button {
      margin-top: 1rem;
  }

  .steps, .benefits, .testimonial-carousel {
      flex-direction: column;
      align-items: center;
  }

  .step, .benefit, .testimonial {
      width: 100%;
      margin: 1rem 0;
  }

  #lead-form form input, #lead-form form select, #lead-form form button {
      width: 90%;
  }
}

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

  header .container {
      flex-direction: column;
      align-items: center;
  }

  header nav ul {
      flex-direction: column;
      align-items: center;
  }

  header nav ul li {
      margin: 0.5rem 0;
  }

  header .cta-button {
      margin-top: 1rem;
  }

  .steps, .benefits, .testimonial-carousel {
      flex-direction: column;
      align-items: center;
  }

  .step, .benefit, .testimonial {
      width: 100%;
      margin: 1rem 0;
  }

  #lead-form form input, #lead-form form select, #lead-form form button {
      width: 95%;
  }
}

.footer {
  background-color: #1f2937; /* Dark background color */
  padding: 40px 0;
  color: #d1d5db; /* Light text color */
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  padding: 0 20px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff; /* White color for headings */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: #d1d5db; /* Light text color */
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #374151; /* Lighter shade for the border */
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #9ca3af;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer-bottom ul li {
  margin: 0 10px;
}

.footer-bottom ul li a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-bottom ul li a:hover {
  text-decoration: underline;
}




.message {
  display: flex;
  margin-bottom: 10px;
}

.message .content {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 14px;
  white-space: pre-wrap; /* Ensure white space is preserved */
  line-height: 1.5;
}

.message.bot .content {
  background-color: #e5e5ea;
  color: #000;
  border-bottom-left-radius: 0;
  margin-left: auto;
}

.message.user .content {
  background-color: #28a745;
  color: #fff;
  border-bottom-right-radius: 0;
  margin-right: auto;
}

.typing-indicator {
  display: none;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}

.chat-container {
  width: 100%;
  max-width: 600px;
  margin: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  height: calc(33.33vh); /* 2/3 of the viewport height */
  min-height: 400px; /* Minimum height */
  position: relative;
}

.chat-window {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  position: relative; /* Ensure it is relative for absolute positioning */
}

.input-container {
  display: flex;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

.input-container textarea {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-right: 10px;
  font-size: 14px;
  resize: none;
  height: 50px;
  overflow-y: auto; /* Enable scrolling for multiline input */
}

.input-container button {
  padding: 10px 20px;
  border: none;
  background-color: #28a745;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

.input-container button:hover {
  background-color: #000000;
}

.powered-by-overlay {
  position: absolute;
  bottom: 10px; /* Position near the bottom */
  right: 10px; /* Position near the right */
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 12px;
  border-radius: 5px;
  width: auto; /* Ensure it does not stretch */
  z-index: 1; /* Ensure it appears on top of other elements */
}

.suggestions-container {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: #f0f0f0;
  border-top: 1px solid #ddd;
}

.suggestion {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin: 5px;
}

.suggestion:hover {
  background-color: #0056b3;
}

.suggestion-container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #f0f0f0;
  border-top: 1px solid #ddd;
}

.suggestion {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin: 0 5px;
}

.suggestion:hover {
  background-color: #0056b3;
}

