.sub-heading {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;  /* centers the text */
}



/* Center highlight box */
.highlight-box {
  background: #fef3c7; /* soft yellow */
  border-left: 5px solid #f59e0b; /* amber accent */
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
  max-width: 600px;   /* limit width for readability */
  margin: 0 auto;     /* centers horizontally */
  text-align: center; /* centers text inside */
}
.contact-banner {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 25px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e5e7eb;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.contact-heading {
  font-size: 24px;
  font-weight: 700;
  color: #16a34a; /* green like WhatsApp */
  margin-bottom: 10px;
}

.contact-question {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  background: #fef3c7; /* light yellow highlight */
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  margin: 15px auto;
}

.contact-text {
  font-size: 15px;
  color: #374151;
  margin-bottom: 20px;
  text-align: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}

/* Email button */
.email-btn {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background: #2563eb;
}
.whatsapp-links {
  display: flex;
  justify-content: center;
  gap: 15px; /* space between buttons */
  flex-wrap: wrap; /* ensures responsiveness */
  margin-top: 10px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}
.steps {
  position: relative;
}
.steps:before {
  top: 125px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: #ff4769;
  left: 50%;
  margin-left: -1px;
}

.timeline {
  margin: 0px auto;
  overflow: hidden;
  position: relative;
  padding: 0px;
  list-style-type: none;
}
.timeline .timeline-box {
  position: relative;
  float: left;
  clear: left;
  width: 45%;
  margin: 1em 2.5%;
  list-style-type: none;
  display: block;
  padding: 25px;
  background: #f8f8f8;
  z-index: 15;
}

.timeline .timeline-box .timeline-title {
  color: #3c3c3c;
  font-weight: 700;
  font-size: 1em;
  float: left;
  padding-left: 25px;
  padding-top: 8px;
}
.timeline .timeline-box .timeline-details {
  clear: both;
  padding-top: 5px;
}
.timeline .timeline-box span {
  position: absolute;
  top: -15px;
  right: 24px;
  font-size: 8em;
  font-weight: 700;
  color: #ff4769;
  opacity: 0.1;
  z-index: -1;
}
@media all and (max-width: 600px) {
  .timeline .timeline-box {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.timeline .timeline-box:hover:after {
  background: #ff4769;
}
@media all and (min-width: 650px) {
  .timeline .timeline-box:after {
    display: block;
    content: ' ';
    height: 9px;
    width: 9px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -6.55%;
    top: 1.5em;
    border: 2px solid #ff4769;
  }
}
.timeline .timeline-box:first-child {
  margin-bottom: 2.5em;
}
.timeline .timeline-box:nth-of-type(1n):before {
  position: absolute;
  top: 15px;
  right: -10px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-left: 10px solid #f8f8f8;
  border-right: 0 solid #f8f8f8;
  border-bottom: 10px solid transparent;
  content: " ";
}
.timeline .timeline-box:nth-of-type(2n) {
  float: right;
  clear: right;
}
.timeline .timeline-box:nth-of-type(2n):before {
  right: auto;
  left: -10px;
  position: absolute;
  top: 15px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-right: 10px solid #f8f8f8;
  border-left: 0 solid #f8f8f8;
  border-bottom: 10px solid transparent;
  content: " ";
}
@media all and (min-width: 600px) {
  .timeline .timeline-box:nth-of-type(2n) {
    margin-top: 3em;
  }
}
.timeline .timeline-box:nth-child(2n):after {
  left: -6.5%;
  right: auto;
}

.timeline-box:hover, .timeline-box:focus {
  transform: translate(0, -5px);
  -webkit-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
}

.timeline-box:hover, .timeline-box:focus {
  -webkit-box-shadow: 0px 3px 0px 0px #ff4769;
  -moz-box-shadow: 0px 3px 0px 0px #ff4769;
  box-shadow: 0px 3px 0px 0px #ff4769;
}

.timeline-box {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.steps-area {
  padding: 90px 0;
}
.timeline .timeline-box .timeline-title {
  color: #ff4769;          /* Highlight color */
  font-weight: 900;        /* Extra bold */
  font-size: 1.3em;        /* Bigger size */

  background: #fff0f3;     /* Light highlight background */
  padding: 8px 12px;
  border-left: 5px solid #ff4769;
  border-radius: 4px;
  display: inline-block;
}
@media all and (max-width: 600px) {
  /* Full width for timeline boxes */
  .timeline .timeline-box {
    width: 100%;
    margin: 1em 0;
    float: none;
    clear: both;
  }

  /* Remove central vertical line */
  .steps:before {
    display: none;
  }

  /* Remove arrow indicators */
  .timeline .timeline-box:before,
  .timeline .timeline-box:after {
    display: none !important;
  }

  /* Headings look clean on mobile */
  .timeline .timeline-box .timeline-title {
    font-size: 1.1em;
    padding: 6px 10px;
    display: block;
    text-align: left;
  }

  /* Numbers (1, 2, 3...) smaller on mobile */
  .timeline .timeline-box span {
    font-size: 4em;
    top: 5px;
    right: 10px;
    opacity: 0.08;
  }
}
.container-11 {
  width: 90%;
  max-width: 1000px;
  align-items: center;
}
 

  .hero {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.9s ease-out;
    text-align: center;
  }

  .eyebrow {
    display: inline-block;
    background: linear-gradient(180deg, #a78bfa, #f472b6);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }

  

  .lead {
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
    color: #334155;
  }

  /* Highlight key sentence */
  .lead strong {
    background: linear-gradient(90deg, #f472b6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .hero {
      padding: 30px 20px;
    }
    h3 {
      font-size: 26px;
    }
    .lead {
      font-size: 16px;
    }
  }
  @media only screen and (max-width: 767px) {
    .footer-area {
        padding-top: 50px;
    }
}
