/* Global Styles */
body {
  font-family: 'Roboto Slab', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

/* Wizard Progress Bar Styles */
.wizard-progress-container {
  margin: 20px 0;
  position: relative;
  padding: 10px 0 30px;
}

.wizard-steps-indicator {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -2px;
}

.wizard-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #e0e0e0;
  transform: translateY(-50%);
  z-index: 0;
}

.wizard-progress-outer {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
}

.wizard-progress-bar {
  height: 100%;
  background-color: #007BFF;
  width: 0%;
  transition: width 0.3s ease;
}

.wizard-step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.wizard-step-number.active {
  background-color: #007BFF;
  color: white;
}
.navbar {
    background-color: #2c3e50; /* Deep blue-gray background color */
    /* Other navbar styles */
}

.navbar-brand {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 24px;
}

.navbar-brand span {
    font-family: 'Roboto Slab',  sans-serif;
    font-weight: bold;
}

.navbar-text a {
    font-size: 1.5rem; /* Make the phone number larger */
    font-weight: bold;
    color: #ffffff;
}

.navbar-text i {
    color: #ffffff;
    font-size: 1.5rem; /* Make the phone icon larger */
}
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h1, h2, h3 {
  color: #222;
}

section h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-weight: 600;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #007BFF;
  border-radius: 3px;
}

p {
  margin: 10px 0;
}

/* Hero Section */
.hero {
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 14px 28px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background-color: #0056b3;
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover::after {
  transform: translateX(100%);
}
.privacy-note {
  text-align: center;
  margin-top: 10px;
}

/* Social proof in hero section */
.hero-text .social-proof-content {
  margin-top: 20px;
  text-align: left;
}

.hero-text .stars i {
  color: #f39c12;
  margin: 0 2px;
  font-size: 1.2rem;
}

.hero-text .social-proof-content p {
  font-size: 0.9rem;
  margin-top: 5px;
  color: #555;
}

.hero-content {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-areas: "text image";
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  grid-area: text;
  max-width: 500px;
}

.promo-text {
  font-weight: bold;
  font-size: 1.2em;
  color: #333;
  background-color: #f8f9fa;
  padding: 12px 15px;
  border-radius: 6px;
  border-left: 4px solid #007BFF;
  margin: 15px 0;
  display: inline-block;
}

.highlight-blue {
  color: #007BFF;
}

.hero-image {
  grid-area: image;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.step[data-step="3"] #finalStepForm {
  max-width: 420px;
  width: 100%;
  margin-top: 1rem;
  max-height: 90vh;
  overflow-y: auto;

}

.step.active {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}


.step[data-step="3"] {
  padding-bottom: 0;
}


form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.center-text {
  display: block;
  text-align: center;
  margin-top: 1rem;
}
.step {
  display: none;
}
.step.active {
  display: block;
}
.checkbox-columns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  margin: 20px auto;
  max-width: 900px;
  width: 100%;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start; /* Change to center if you prefer */
  margin: 0;
  flex: 1;
  min-width: 250px;
  width: calc(50% - 10px); /* Set width to 50% minus half the gap */
}



.option-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.label-content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.label-text {
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

input, textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05) inset;
}

input:focus, textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
  outline: none;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}

button {
  background-color: #007BFF;
  color: white;
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

small {
  font-size: 0.85em;
  color: #666;
}

/* Benefits Section */
#benefits h2 {
  text-align: center;
}

.benefits-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid #007BFF;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit img {
  height: 60px;
  margin-bottom: 15px;
}

.benefit i {
  color: #007BFF;
  margin-bottom: 15px;
  display: block;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.benefit:hover i {
  transform: scale(1.1);
}

.benefit h3 {
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit p {
  color: #555;
  line-height: 1.6;
}

/* Social Proof */
.social-proof {
  background: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-proof-content {
  text-align: center;
}

.stars i {
  color: #f39c12;
  margin: 0 2px;
  font-size: 1.5rem;
}


/* Testimonials */
#testimonials h2 {
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #007BFF;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin: 15px 0;
  position: relative;
}

.testimonial p::before,
.testimonial p::after {
  content: '"';
  font-size: 1.5em;
  color: #007BFF;
  opacity: 0.5;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  color: #333;
  font-weight: 600;
}

.testimonial img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */
#faq h2 {
  text-align: center;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #007BFF;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-item h3 {
  margin-top: 0;
  color: #007BFF;
  font-weight: 600;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
}

/* Final CTA */
.cta-final {
  background: #007BFF;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-final h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-final form {
  max-width: 500px;
  margin: auto;
}

.cta-final input,
.cta-final textarea {
  border: none;
  border-radius: 4px;
}

.cta-final button {
  background: white;
  color: #007BFF;
  font-weight: bold;
}

/* Default button (white background areas) */
form button {
  width: 200px;
  margin: 10px auto;
  background-color: #007BFF;
  color: white;
  padding: 14px;
  font-size: 1.1em;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

form button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

form button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Final CTA button (blue background area) */
.cta-final .cta-button {
  background-color: white;
  color: #007BFF;
}

.cta-final .cta-button:hover {
  background-color: #f2f2f2;
}
footer {
    background-color: #2c3e50; /* Deep blue-gray background color */
    color: #ffffff;
    padding: 20px;
}


@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "text"
      "image";
  }
  
  .hero-text, 
  .hero-image {
    max-width: 100%;
  }
  
  .hero-image {
    margin-top: 30px;
  }
  
  .benefits-grid,
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-image img {
    max-width: 100%;
  }
  
  .checkbox-columns {
    flex-direction: column;
    align-items: center;
  }
  
  .option-group {
    width: 100%;
    max-width: 420px;
  }
  
  /* Responsive styles for wizard progress bar */
  .wizard-step-number {
    width: 25px;
    height: 25px;
    font-size: 0.9em;
  }
  
  .wizard-progress-container {
    padding: 5px 0 25px;
  }
}


/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}


.testimonials {
  text-align: center;
  padding: 2rem;
  background: #f8f8f8;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 1rem;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
