/* -------------- Banner Section ----------------- */
.banner-section {
  width: 100%;
  height: 100vh;
  max-height: 875px;
  margin-top: 81px !important;
  overflow: hidden;
  position: relative;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-content-setion {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary);
  padding: 0 1rem;
}

.banner-content {
  max-width: 900px;
}

.banner-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--ff-primary);
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.banner-content p {
  font-size: 36px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .banner-section {
    height: 90vh;
  }

  .banner-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .banner-content p {
    font-size: 26px;
    line-height: 1.5;
  }
}

/* ---------- Animation styles ---------- */
.banner-content h1,
.banner-content p {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.banner-content.visible h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.banner-content.visible p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
/* -------------------Detailed-support-------------- */
.service-support-section {
  padding: 100px 0;
}
.service-image-wrapper,
.service-image-wrapper img {
  width: 100%;
  height: auto;
}
.service-image-wrapper img {
  margin-bottom: 24px !important;
}
.service-sub-section-second {
  padding: 23px 0;
}
.service-sub-section-second h2 {
  font-size: 44px;
  font-weight: 600;
  max-width: 520px;
  margin-bottom: 14px;
}
.service-sub-section-second p {
  font-size: 19px;
  font-weight: 300;
  font-family: var(--ff-secondary);
  text-align: justify;
  margin-bottom: 33px;
}
.service-list {
  list-style-type: none;
  padding: 0 !important;
}
.service-list li {
  margin-bottom: 23px;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--ff-secondary);
  color: var(--tertiary);
}
.service-list li i {
  color: #180e0d;
}

@media (max-width: 769px) {
  .service-support-section {
    padding: 48px 0;
  }
  .service-support-section .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .service-sub-section-second {
    order: 1;
    padding: 0 12px;
    text-align: center;
  }
  .service-list li {
    text-align: left;
  }

  .service-sub-section-second h2 {
    font-size: 32px;
    max-width: 100%;
    text-align: left;
  }

  .service-sub-section-second p {
    font-size: 16px;
    text-align: justify;
  }

  .service-image-wrapper img {
    margin-bottom: 16px !important;
  }
}

/* ------------------animation------------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}
.delay-5 {
  transition-delay: 1s;
}
.delay-6 {
  transition-delay: 1.2s;
}
.delay-7 {
  transition-delay: 1.4s;
}

/* -----------------how its works section----------- */
.service-works-section {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 100px 0;
}

.service-works-heading {
  font-size: 36px;
  font-weight: 600;
}

.service-works-subtext {
  font-size: 16px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.service-works-steps {
  position: relative;
  flex-wrap: nowrap;
  gap: 40px;
}

.step {
  text-align: center;
  max-width: 220px;
  flex: 1;
}

.icon-box {
  background-color: #e9edf9;
  border-radius: 12px;
  width: 70px;
  height: 70px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box i {
  font-size: 30px;
  color: #3f64d4;
}

.step h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  max-width: 226px;
}

.step p {
  font-size: 14px;
  font-family: var(--ff-secondary);
  color: #c3c3c3;
  margin: 0 auto;
  line-height: 26px;
}

.dotted-line {
  position: relative;
  flex: 0 0 150px;
  height: 2px;
  border-bottom: 2px dashed #4a90e2;
  align-self: flex-start;
  display: flex;
  justify-content: center;
  top: 40px;
}

.dotted-line::before,
.dotted-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: #4a90e2;
  border-radius: 50%;
  transform: translateY(-50%);
}

.dotted-line::before {
  left: -4px;
  top: 1px;
}

.dotted-line::after {
  right: -4px;
  top: 1px;
}
@media (max-width: 767px) {
  .service-works-scroll-wrapper {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0 0 20px 0;
    margin-left: calc(-50vw + 50%);
    cursor: grab;
  }

  .service-works-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .service-works-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }

  .service-works-steps {
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    padding-left: 20px;
    width: max-content;
  }

  .step {
    flex: 0 0 220px;
    text-align: center;
  }

  .dotted-line {
    flex: 0 0 80px;
    height: 2px;
    border-bottom: 2px dashed #4a90e2;
    align-self: flex-start;
    position: relative;
  }

  .dotted-line::before,
  .dotted-line::after {
    content: "";
    position: absolute;
    top: 65% !important;
    width: 10px;
    height: 10px;
    background-color: #4a90e2;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .dotted-line::before {
    left: -5px;
  }
  .dotted-line::after {
    right: -5px;
  }
}
@media (max-width: 1199px) {
  .service-works-scroll-wrapper {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0 0 20px 0;
    margin-left: calc(-50vw + 50%);
    cursor: grab;
  }

  .service-works-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .service-works-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }

  .service-works-steps {
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    padding-left: 20px;
    width: max-content;
  }

  .step {
    flex: 0 0 220px;
    text-align: center;
  }

  .dotted-line {
    flex: 0 0 80px;
    height: 2px;
    border-bottom: 2px dashed #4a90e2;
    align-self: flex-start;
    position: relative;
  }

  .dotted-line::before,
  .dotted-line::after {
    content: "";
    position: absolute;
    top: 65% !important;
    width: 10px;
    height: 10px;
    background-color: #4a90e2;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .dotted-line::before {
    left: -5px;
  }

  .dotted-line::after {
    right: -5px;
  }
}

/* ----------animation-------------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}

/* ---------------Smart solutions------- */
.innovation-section {
  padding: 100px 0;
}

.innovation-section-content {
  margin-bottom: 58px;
}

.innovation-section-content h3 {
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 25px;
}

.innovation-section-content p {
  color: #696868;
  font-weight: 300;
  font-size: 19px;
  font-family: var(--ff-secondary);
}

.innovation-card {
  padding: 36px 24px;
  background-color: var(--primary);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.innovation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.innovation-card img,
.innovation-card h6 {
  margin-bottom: 20px;
}

.innovation-card h6 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
  width: 100%;
}

.innovation-card p {
  color: #696868;
  font-size: 18px;
  font-family: var(--ff-secondary);
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  margin-bottom: 24px;
}
.card-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.card-list li {
  margin-bottom: 8px;
  font-weight: 400;
  font-family: var(--ff-secondary);
  font-size: 14px;
  line-height: 20px;
}
.card-list li i {
  color: #00bc7d;
}

@media (max-width: 991px) {
  .innovation-section-content {
    flex-direction: column;
    text-align: center;
  }

  .innovation-section-content h3,
  .innovation-section-content p {
    max-width: 100%;
  }

  .innovation-section-content p {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .innovation-section {
    padding: 48px 0;
  }
}
/* === Initial hidden states === */
.innovation-section-heading,
.innovation-section-text,
.innovation-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.innovation-section-heading.visible {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 0.8s ease-out forwards;
}

.innovation-section-text.visible {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 0.8s ease-out forwards;
}

.innovation-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --------------support section------------- */
.support-section {
  padding: 100px 0;
  background-color: var(--secondary);
  color: var(--primary);
}
.support-card {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.support-card h6 i {
  font-size: 31px;
  margin-bottom: 48px;
}
.support-card h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: var(--secondary);
  margin-bottom: 19px;
  text-align: center;
}
.support-card p {
  font-family: var(--ff-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--tertiary);
}
.support-card:hover {
  transform: translateY(-5px);
}

.btn-action {
  border: none;
  border-radius: 35px;
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
  height: 45px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  text-decoration: none;
}

.btn-whatsapp {
  background: #25d366;
  border: 0 solid #25d366;
}

.btn-email {
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  color: var(--secondary);
}

.btn-action:not(.loading):hover {
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-action i {
  font-size: 1.45rem;
  position: absolute;
  left: 25%;
  pointer-events: none;
  z-index: 10;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.btn-action .text {
  width: 100%;
  display: block;
  position: absolute;
  pointer-events: none;
  left: 10px;
  transition: all 0.25s ease;
}

.loading-animate {
  position: absolute;
  width: 45px;
  height: 45px;
  z-index: 100;
  border-radius: 50%;
  top: 0;
  left: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s ease;
  overflow: hidden;
}

.loading-animate:after,
.loading-animate:before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left: 3px solid var(--primary);
  position: absolute;
}

.loading-animate:after {
  animation: loading infinite 0.8s ease 0.05s;
}

.loading-animate:before {
  animation: loading infinite 0.8s linear;
  opacity: 0.6;
}

.btn-action.loading {
  width: 45px;
}

.btn-action.loading i {
  top: 1px;
  left: -2%;
  padding-bottom: 4px;
  padding-left: 3px;
}

.btn-action.loading .text {
  transform: translate(-140px);
}

.btn-action.loading .loading-animate {
  opacity: 1;
  left: -1%;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.email-btn {
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
}
.qr-code {
  margin-top: 25px;
  padding: 16px 0;
  width: 100%;
  background-color: #f3f4f6;
  border-radius: 10px;
}
.qr-code p {
  font-family: var(--ff-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6a7282;
}
.qr-code img {
  width: 100px;
  height: 100px;
}
.support-email {
  color: #4a5565;
  font-size: 14px;
  font-weight: 600 !important;
  margin-top: 25px;
  line-height: 20px;
  text-transform: lowercase !important;
  padding: 29px 0;
  width: 100%;
  border-radius: 10px;
  background-color: #f3f4f6;
  display: flex;
  flex-direction: column;
  font-family: var(--ff-primary);
}
.support-email small {
  font-weight: 400;
  font-family: var(--ff-secondary);
}

/* -----------------Q/A Section---------------- */
.qa-section {
  padding: 100px 0;
}
.qa-section h2 {
  text-align: center;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 50px;
}
.custom-accordion-card {
  background: var(--primary);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 8px 0;
  margin-bottom: 25px;
  border: 1px solid #eeeeee !important;
}

.custom-accordion-card .accordion-item {
  border: none !important;
  box-shadow: none !important;
}

.custom-accordion-card .accordion-item,
.custom-accordion-card .accordion-header,
.custom-accordion-card .accordion-button {
  border-bottom: none !important;
  border-top: none !important;
}
.accordion-header {
  margin: 10px !important;
}

.custom-accordion-card .accordion-button {
  background-color: transparent;
  border: none !important;
  box-shadow: none !important;
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--secondary);
  padding: 1rem 1.5rem;
  transition: background 0.2s ease;
}

.custom-accordion-card .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--secondary);
  border-bottom: none !important;
  box-shadow: none !important;
}

.custom-accordion-card .accordion-button:focus {
  box-shadow: none !important;
}

.custom-accordion-card .accordion-body {
  font-size: 16px;
  color: var(--tertiary);
  padding: 0 1.5rem 1rem 15px;
  background-color: var(--primary);
  line-height: 24px;
  font-family: var(--ff-secondary);
  font-weight: 400;
}

.custom-accordion-card .accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--secondary);
  background-image: none;
  transform: none !important;
  transition: all 0.3s ease;
}

.custom-accordion-card .accordion-button:not(.collapsed)::after {
  content: "–";
}
