main {
  overflow-x: hidden;
}

.text-shadow {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.text-justify {
  text-align: justify;
}

.what-style {
  padding: 1.5rem;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  box-shadow: 2px 2px 5px 10px rgba(153, 205, 50, 0.46);
}

.what-style.box {
  position: relative;
  transform-style: preserve-3d;
  border-radius: 0px;
}

.what-style.box::before {
  content: "";
  position: absolute;
  inset: 0px;
  filter: blur(4px);
  transform: translate3d(0px, 0px, -1px);
  border-radius: inherit;
  pointer-events: none;
}

.blue-font {
  color: #1a0c90;
}

.gray-font {
  color: gray;
}


.choose-style {
  background-color: darkslateblue;
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 2px 40px;
  color: white;
  font-weight: bold;
  transition: transform 0.5s ease-in-out;
}

.choose-style:hover {
  transform: translateY(-10px);
  box-shadow: 2px 2px 2px 8px orange;
}

.talk-btn-style {
  background: linear-gradient(to right, rgba(148, 0, 211, 0.53), rgba(7, 145, 143, 0.727));
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 20px 30px;
  color: white;
  font-weight: bold;
  border: 1px solid transparent;
}

.talk-btn-style:hover {
  box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, rgba(7, 145, 143, 0.603), rgba(148, 0, 211, 0.53));
  ;
}

.hire-style {
  background-color: rgba(71, 61, 139, 0.138);
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 2px 40px;
  color: white;
  font-weight: bold;
  transition: transform 0.5s ease-in-out;
}

.highlight-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 0;
  list-style: none;
}

.highlight-box li {
  list-style: none;
  background: #e8f0fe;
  padding: 15px;
  border-left: 4px solid #4a90e2;
  border-radius: 8px;
  transition: transform 0.5s ease-in-out;
}

.highlight-box li:hover {
  transform: translateY(-10px);
}

.step-style {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* 3 equal columns */
  grid-template-rows: auto auto;
  gap: 1.75rem;
  list-style-type: none;
}

.communication-style {
  background-color: blanchedalmond;
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
}

@media screen and (max-width: 1200px) {
  .step-style {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 equal columns */
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }

  .highlight-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
  }

  main {
    margin-top: 12rem;
  }
}

@media screen and (max-width: 792px) {
  .step-style {
    display: grid;
    grid-template-columns: 1fr;
    /* 1 equal columns */
    grid-template-rows: auto;
    gap: 0.75rem;
  }

  .highlight-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    padding: 0;
  }

  main {
    margin-top: 7rem;
  }
}

.step-style li {
  position: relative;
}

.step-style li::before {
  content: "➤ ";
  font-size: 1.25rem;
  color: #f79d03;
  position: absolute;
  top: -2px;
  left: -25px;
}

.no1-style {
  background-color: rgba(128, 128, 128, 0.24);
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}

.form-style {
  background: linear-gradient(to right, blue, darkcyan);
  box-shadow: 2px 2px 8px rgba(5, 142, 94, 0.5);
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
}

.form-floating input {
  border: 1px solid orange;
  box-shadow: 2px 2px 8px burlywood;
  border-radius: 5px;
  color: #6c757d;
}

.form-floating select {
  border: 1px solid orange;
  box-shadow: 2px 2px 8px burlywood;
  border-radius: 5px;
  color: #6c757d;
}

.form-floating label {
  color: #6c757d;
}

.free-style {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
}

.free-btn {
  background-color: rgba(148, 0, 211, 0.8);
  padding: 0.75em;
  ;
  border-radius: 10px 20px;
  color: white;
  font-weight: bold;
  text-align: center;
}

.special-style {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
  font-weight: bold;
}

.special-style:hover {
  background-color: royalblue;
  color: white;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.bg-affordable {
  background: linear-gradient(rgba(0, 0, 255, 0.052), rgba(0, 128, 0, 0.058));
}

.affordable-box {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  background-color: white;
  padding: 1.5rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affordable-box:hover {
  transform: scale(1.01);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0);
}

.ribbon1 {
  background-color: #0c00fa85;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 5px;
}

.step5-style {
  background: #f5f7fa;
  padding: 1.5em;
  margin-bottom: 1.5em;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
  text-align: center;
  border: 2px solid #f79d03;
  box-shadow: 2px 2px 8px rgba(116, 190, 5, 0.295);
}

.step5-style:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 8px rgba(116, 190, 5, 0.768);
}

.ribbon {
  display: flex;
  justify-content: center;
  ;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.step-number {
  background: #007bff;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 50px;
  margin-right: 10px;
}

.step5-style p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.price-btn-style {
  background: linear-gradient(to right, #0d90b4, #1c7809);
  padding: 1.2rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}

.price-btn-style:hover {
  background: linear-gradient(to right, #1c7809, #0d90b4);
}

.offer-list li {
  margin-bottom: 10px;
  list-style: none;
}

.offer-list li::before {
  content: "✔";
  color: green;
  margin-right: 8px;
}

.download-style {
  background: linear-gradient(to right, #0d90b435, #1c780956);
  padding: 1.2rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
  font-weight: bold;
}

.bg-conclusion {
  background: linear-gradient(rgba(0, 0, 255, 0.052), rgba(0, 128, 0, 0.058));
}

.free-tech-btn {
  background: linear-gradient(to right, #2FB9E9, #38C6E9);
  padding: 1.2rem;
  margin-bottom: 0.25em;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  border: 2px solid transparent;
}

button .fa-phone {
  font-size: 1.2em;
  color: white;
  background-color: darkcyan;
  border-radius: 10px;
  padding: 0.5em;
  margin-right: 0.5em;
  animation: phone-anim infinite 1s ease-in-out;
}

@keyframes phone-anim {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.faq-container {
  max-width: 700px;
  margin: auto;
  font-family: Arial;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: #f5f5f5;
  color: #333;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

/* Hover effect */
.faq-question:hover {
  background: rgba(172, 255, 47, 0.366);
  color: darkgreen;

}

/* Active (clicked) state */
.faq-question.active {
  background: #4CAF50;
  /* green */
  color: #fff;
  font-weight: 600;
}

/* Optional: icon color change */
.faq-question.active .icon {
  color: #fff;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
}

.icon {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  box-shadow: 2px 2px 10px rgba(19, 5, 147, 0.607);
  border-radius: 10px;
  margin-bottom: 0.5em;
}

.faq-answer p {
  padding: 10px 0;
}