html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --red: #DF0000;
  --dark: #111;
  --text: #222;
  --muted: #6d6d6d;
  --soft: #fff3f3;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Mulish", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  margin: 0;
  font-size: 19.5px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}
.page-container {
  width: min(100%, 1920px);
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
.site-header {
  min-height: 82px;
  border-bottom: 1px solid #ececec;
  background: #fff;
  display: flex;
  align-items: center;
}
.brand img {
  height: 48px;
  object-fit: contain;
}
.demo-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #e60000;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  min-width: 112px;
  min-height: 34px;
  padding: 9px 34px 9px 22px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.demo-top span {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e60000;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}
.demo-top span i {
  transform: rotate(-45deg);
  display: inline-block;
}
.demo-top:hover span i {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.demo-top:hover {
  background: #cc0000;
  color: #fff;
}

.demo-top:hover span {
  background: #cc0000;
}
.section-soft {
  /* background: linear-gradient(177deg, #fff 0 70%, #fff4f4 70% 100%); */
  background: url("../assets/img/hero-bg.png") right bottom / contain no-repeat;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  padding: 72px 0 27px;
}
.hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #000000;
 font-family: "Poppins", sans-serif;
}
.hero h1 span {
  color: #DF0000;
}
.hero h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  font-family: "mulish", sans-serif;
}
.under {
  width: 140px;
  height: 2px;
  background: var(--red);
  margin: 6px 0 27px;
}
.hero-desc {
  font-size: 16.5px;
  line-height: 1.5;
  color: #3A3A3A;
  margin-bottom: 37.5px;
  max-width: 720px;
  font-family: "mulish", sans-serif;
}
.mini-card {
  width: 174px;
  height: 123px;
  box-shadow: 1px 2px 4.1px 0px #00000040;
  border-radius: 6px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 21px;
  font-size: 13.5px;
  color: #414141;
  transition: transform 0.3s ease;
  font-weight: normal;
}

.mini-card-label {
  font-weight: 600;
  color: #414141;
}

.mini-card:hover {
  transform: translateY(-8px);
}

.mini-card i {
  color: var(--red);
  font-size: 21px;
  transition: transform 0.3s ease;
}

.mini-card:hover i {
  transform: scale(1.2);
}
.demo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 7.5px 27px rgba(0, 0, 0, 0.13);
  border-top: 5px solid var(--red);
  padding: 30px 25.5px;
}
.demo-card h6 {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 36px;
}
.hero-form {
  width: 378px;
  margin-left: auto;
  max-width: 100%;
}
.form-control {
  height: 42px;
  border: 1.5px solid #cfcfcf;
  border-radius: 4.5px;
  font-size: 15px;
  margin-bottom: 21px;
  padding-left: 18px;
}
.red-btn {
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 18px;
  width: 100%;
  border: 0;
}
.red-btn:hover {
  background: #c90000;
  color: #fff;
}
.red-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #2d7a46;
}
.form-status.is-error {
  color: #c90000;
}
.shape-dark {
  position: absolute;
  right: 350px;
  top: 190.5px;
  width: 103.5px;
  height: 103.5px;
  background: #484848;
  border-radius: 50%;
}
.dots {
  position: absolute;
  right: 450px;
  top: 300px;
  width: 40px;
  height: 90px;
  background-image: radial-gradient(var(--red) 2px, transparent 4.5px);
  background-size: 13.5px 13.5px;
}
.services {
  padding: 55.5px 0 26px;
}
.services-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  touch-action: pan-y;
}
.marquee-controls {
  display: none;
}
.marquee-btn {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(223, 0, 0, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.marquee-btn:hover {
  background: #c90000;
}
.services-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
  animation: services-marquee-scroll 38s linear infinite;
}
.services-marquee:hover .services-track,
.services-marquee.is-paused .services-track,
.services-marquee.is-manual .services-track {
  animation-play-state: paused;
}
.services-marquee.is-manual .services-track {
  animation: none;
}
@keyframes services-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.why h2,
.testimonials h2 {
  font-size: 24px;
  font-weight: 500;
}
.section-title h2{
 font-size: 24px;
  font-weight: 500;
}
.section-title p {
  font-size: 16px;
  color: #555;
  line-height: 1.25;
  margin: 10px 0 55.5px;
  max-width: 500px;
  margin: 0 auto 30px;
}
.service-card {
  flex: 0 0 calc((100vw - 80px - 60px) / 4);
  max-width: 100%;
  min-width: 220px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  min-height: 295px;
  /* gap: 10px; */
  padding: 14px;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.03);
}
.blob {
  width: 126px;
  height: 100px !important;
  background: #FF0A0A;
  border-radius: 999px;
  margin: 0 auto 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  transform: none;
  isolation: isolate;
  clip-path: path("M18 5C28 2 42 5 54 5C67 5 78 3 89 7C100 11 105 20 105 31C105 40 97 45 88 49C79 53 70 56 61 61C51 66 44 74 35 79C27 83 17 81 11 73C4 64 2 51 2 39C2 28 5 16 11 10C13 8 15 6 18 5Z");
}
.blob i {
  transform: translate(-10px, -7px);
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 1.25em;
}
.blob::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  clip-path: inherit;
  transform: scale(0.985);
  transform-origin: center;
  z-index: -1;
}

.feature h5 {
  font-size: 17px;
  font-weight: 500;
  margin: 10px 0;
}
.service-card h5{
   font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #2d2d2d;
  margin-top: 0;
  margin-bottom: 18px;
}

.service-card p,
.feature p {
  font-size: 15px;
  line-height: 1.4;
  color: #777777;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.dynamic-forms-card {
  width: 100%;
  margin: 40px auto 0;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.dynamic-forms-copy {
  flex: 0 1 50%;
}
.dynamic-forms-visual {
  flex: 0 1 50%;
  text-align: right;
}
.dynamic-forms-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-left: auto;
}
.dynamic-forms-card h3 {
  margin: 0 0 18px;
  max-width: 420px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}
.dynamic-forms-card h3 span {
  color: #FF0A0A;
  display: block;
}
.dynamic-forms-card p {
  margin: 0;
  max-width: 550px;
  font-size: 15px;
  line-height: 1.65;
  color: #3A3A3A;
}
.dynamic-forms-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.dynamic-forms-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: #3A3A3A;
}
.dynamic-forms-list li::before {
  content: none;
}
.dynamic-forms-list li::after {
  content: none;
}
.dynamic-forms-list li i {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FF0A0A;
  box-shadow: 0px 1px 4px 0px #00000040;
  border-radius: 50%;
  background: #ffffff;
}
.dynamic-forms-list li span {
  display: inline-block;
}
.section-soft2 {
  padding: 56px 0 45px;
  /* background: #fff7f7; */
  background: #fff url("../assets/img/second-sectionbg.png") left bottom / contain no-repeat;
  position: relative;
  overflow: hidden;
}
.section-soft2:before {
  content: none;
  position: absolute;
  left: -105px;
  top: 165px;
  width: 780px;
  height: 585px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.95;
}
.section-soft2:after {
  content: none;
  position: absolute;
  right: -120px;
  top: 187.5px;
  width: 825px;
  height: 495px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.95;
}
.why .container {
  position: relative;
  z-index: 1;
}
.why-sub {
  font-size: 16.5px;
  color: #555;
  max-width: 500px;
  line-height: 1.55;
}
.feature {
  height: 100%;
  background: #fff;
  border: 1.5px solid #d8d8d8;
  border-radius: 7.5px;
  padding: 39px 19.5px 15px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
}
.feature i {
  font-size: 30px;
  color: var(--red);
  margin-bottom: 25.5px;
}
.why-img {
  width: 100%;
  max-width: 500px;
}
.visual-wrap {
  text-align: right;
}
.cta-block {
  padding: 42px 0 63px;
  background: #fff;
  overflow-x: clip;
}
.dark-panel {
  height: 345px;
  background: #2e2e2e;
  border-radius: 33px;
  position: relative;
  margin-top: 24px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.13);
  /* overflow: hidden; */
}
.dark-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(30deg, transparent 0 12%, rgba(255, 255, 255, 0.05) 12% 33%, transparent 33% 100%);
}
.dark-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(129deg, transparent 0 66%, rgba(255, 255, 255, 0.05) 66% 78%, transparent 78% 100%);
}
.cta-text {
  position: relative;
  z-index: 1;
  padding-top: 87px;
  color: #fff;
}
.cta-text h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
.cta-text h2 span {
  color: #FF6666;
}
.cta-text p {
  font-size: 16px;
  max-width: 450px;
  color: #FCFCFC;
  line-height: 1.45;
}
.cta-form {
  position: absolute;
  left: 100px;
  top: -46.5px;
  width: 381px;
  z-index: 5;
  box-shadow: 5px 0px 10px 0px #00000042;

}
.cta-form h6 {
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 500;
}
.cta-form .form-control::placeholder {
  color: #3A3A3A;
  opacity: 1;
}
/* .play {
  position: absolute;
  right: 0;
  top: -60px;
  width: 150px;
  z-index: 2;
  transform: rotate(360deg);
} */
 .play {
  position: absolute;
  right: -30px;
  top: -60px;
  width: 150px;
  z-index: 2;

  animation: spin 6s linear infinite;
  transform-origin: center center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-soft3 {
  padding: 92px 0 86px;
  background: #fff7f7;
  position: relative;
  overflow: visible;
}
.section-soft3:before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: -45px;
  height: 270px;
  background: #fff;
  border-radius: 0 0 50% 50%;
}
.testimonials .container {
  position: relative;
  z-index: 2;
}
.testimonials h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
.testimonials p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 56px;
}
.testimonial-grid {
  display: block;
  max-width: 980px;
  margin: 0 auto;
}
.testimonials-marquee {
  overflow: visible;
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  touch-action: pan-y;
  padding-top: 56px;
}
.testimonials-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  will-change: transform;
  margin-top: 0;
  animation: testimonials-marquee-scroll 28s linear infinite;
}
.testimonials-marquee:hover .testimonials-track,
.testimonials-marquee.is-paused .testimonials-track,
.testimonials-marquee.is-manual .testimonials-track {
  animation-play-state: paused;
}
.testimonials-marquee.is-manual .testimonials-track {
  animation: none;
}
.testimonial-card {
  flex: 0 0 calc((980px - 34px) / 2);
  background: #fff;
  border: 1px solid #e3dede;
  border-radius: 26px;
  padding: 18px 18px 16px;
  min-height: 190px;
  box-shadow: 0 8px 28px rgba(28, 28, 28, 0.06);
  text-align: center;
  position: relative;
  margin: 2px;
}
.testimonial-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 2px;
}
.testimonial-card strong {
  display: block;
  color: #FF0A0A;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial-card small {
  display: block;
  font-size: 15px;
  color: #777777;
}
.testimonial-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #3A3A3A;
  margin: 10px 20px;
}
.review-avatar {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50%;
  margin: -56px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.review-avatar img {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  display: block;
}
footer {
  min-height: 150px;
  background: #1b1b1b;
  color: #fff;
  position: relative;
  overflow: hidden;
}
footer:before,
footer:after {
  content: "";
  position: absolute;
  inset: 0;
}
footer:before {
  background: linear-gradient(145deg, transparent 0 73%, rgba(255, 255, 255, 0.05) 73% 86%, transparent 86% 100%);
}
footer:after {
  background: linear-gradient(34deg, rgba(255, 255, 255, 0.04) 0 11%, transparent 11% 100%);
}
.footer-inner {
  position: relative;
  z-index: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 28px 20px;
}
.footer-inner h3 {
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}
.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-call-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #9e1818;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-stars {
  margin-top: 10px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 2px;
}
.services-track.slick-initialized,
.testimonials-track.slick-initialized {
  display: block;
  width: auto;
  animation: none;
}
.services-track.slick-initialized .slick-list,
.testimonials-track.slick-initialized .slick-list {
  margin: 0 -14px;
  overflow: visible;
}
.services-track.slick-initialized .slick-track,
.testimonials-track.slick-initialized .slick-track {
  display: flex;
  align-items: stretch;
  max-width: 1000px;
  /*gap: 20px;*/
}
.services-track.slick-initialized .slick-slide,
.testimonials-track.slick-initialized .slick-slide {
  height: auto;
  padding: 0;
}
.services-track.slick-initialized .slick-slide {
  display: flex;
}
.testimonials-track.slick-initialized .slick-slide {
  display: block;
  padding: 0 8px;
}
.services-track.slick-initialized .slick-slide > div,
.testimonials-track.slick-initialized .slick-slide > div {
  height: auto;
  width: 100%;
}
.services-track.slick-initialized .service-card {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 14px;
}
.services-track.slick-initialized .service-card {
  margin: 0 8px;
}
.services-track.slick-initialized .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: flex-start; */
  justify-content: center;
}
.services-track.slick-initialized .service-card .blob {
  width: 126px;
  height: 100px !important;
  max-width: 126px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-track.slick-initialized {
  margin-top: 0;
}
.testimonials-track.slick-initialized .testimonial-card {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 4px;
  padding: 10px;
}
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero h4 {
    font-size: 18px;
  }
  .hero-form {
    width: 100%;
    max-width: 360px;
  }
  .shape-dark {
    right: 290px;
  }
  .dots {
    right: 365px;
  }
  .service-card {
    min-width: 220px;
  }
  .dynamic-forms-card {
    gap: 28px;
    padding: 28px 30px;
  }
  .cta-form {
    left: 40px;
    width: 340px;
  }
  .cta-text {
    padding-top: 78px;
  }
  .cta-text h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .page-container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-header {
    min-height: 74px;
  }
  .section-soft {
    background-position: right bottom;
    background-size: 48%;
    padding: 56px 0 44px;
  }
  .hero-left {
    text-align: center;
    
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }
  .hero h4 {
    font-size: 19px;
  }
  .under {
    margin: 8px auto 24px;
  }
  .hero-desc {
    margin: 0 auto 32px;
    max-width: 680px;
  }
  .mini-cards {
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 8px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mini-card {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    min-width: 0;
    height: 108px;
    gap: 14px;
    font-size: 11.5px;
    border: 1px solid #80808042;
    /*box-shadow: none;*/
  }
  .hero-form {
    width: 100%;
    max-width: 420px;
    margin: 36px auto 0;
  }
  .shape-dark,
  .dots {
    display: none;
  }
  .services-track {
    animation-duration: 32s;
  }
  .service-card {
    flex-basis: calc((100% - 10px) / 2);
    min-width: 0;
    height: auto;
    min-height: 360px;
  }
  .dynamic-forms-card {
    gap: 24px;
    padding: 24px 26px;
  }
  .dynamic-forms-card h3 {
    font-size: 26px;
  }
  .dynamic-forms-visual {
    flex-basis: 420px;
  }
  .section-soft2 {
    background-position: left bottom;
    background-size: 60%;
    padding: 56px 0 40px;
  }
  .why h2,
  .section-title h2 {
    font-size: 28px;
  }
  .why-sub {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .visual-wrap {
    text-align: center;
    margin-top: 30px;
  }
  .why-img {
    max-width: 420px;
  }
  .cta-form {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .dark-panel {
    height: auto;
    padding: 36px 28px;
    margin-top: -18px;
    /* overflow: hidden; */
  }
  .cta-text {
    padding: 36px 0 8px;
    text-align: center;
  }
  .cta-text p {
    margin: auto;
    color: #FCFCFC;
  }
  .play {
    width: 118px;
    right: 0;
    top: -38px;
  }
  .section-soft3 {
    padding: 86px 0 72px;
  }
  .testimonials h2 {
    font-size: 28px;
  }
  .testimonials p {
    margin-bottom: 48px;
  }
  .testimonial-grid {
    display: block;
    max-width: 100%;
  }
  .testimonials-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .testimonials-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    will-change: transform;
    animation: testimonials-marquee-scroll 24s linear infinite;
  }
  .testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
  }
  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: auto;
  }
  .section-soft2:before,
  .section-soft2:after {
    display: none;
  }
  .footer-inner h3 {
    font-size: 26px;
  }
  .footer-call {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 17px;
  }
  .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header .page-container {
    gap: 18px;
  }
  .section-soft {
    background-image: none;
    padding: 46px 0 38px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero h4 {
    font-size: 18px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.65;
  }
  .mini-card {
    height: auto;
    min-height: 108px;
    padding: 20px 16px;
    gap: 14px;
  }
  .services {
    padding: 48px 0 26px;
  }
  .marquee-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 14px;
  }
  .section-title p {
    font-size: 13px;
    margin: 12px auto 34px;
  }
  .service-card {
    min-height: 295px;
    /*padding: 36px 20px 22px;*/
    padding: 14px !important;
  }
  .service-card p,
  .feature p {
    font-size: 14px;
    line-height: 1.45;
  }
  .dynamic-forms-card {
    margin-top: 40px;
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 22px;
  }
  .dynamic-forms-copy,
  .dynamic-forms-visual {
    flex-basis: auto;
    width: 100%;
  }
  .dynamic-forms-card h3 {
    max-width: none;
    font-size: 24px;
  }
  .dynamic-forms-card p {
    font-size: 14px;
  }
  .dynamic-forms-visual {
    text-align: center;
  }
  .dynamic-forms-visual img {
    margin: 0 auto;
    max-width: 420px;
  }
  .section-soft2 {
    background-size: 85%;
    padding: 10px 0 34px;
  }
  .why-sub {
    font-size: 15px;
  }
  .feature {
    height: 100%;
    min-height: 180px;
    padding: 28px 18px 20px;
  }
  .cta-block {
    padding: 54px 0 58px;
  }
  .cta-form h6,
  .demo-card h6 {
    font-size: 16px;
    line-height: 1.45;
  }
  .dark-panel {
    border-radius: 26px;
    padding: 28px 22px;
    top: 50px;
  }
  .cta-text h2 {
    font-size: 28px;
  }
  .cta-text p {
    font-size: 14px;
  }
  .play {
    width: 92px;
    right: 0;
    top: -26px;
  }
  .section-soft3:before {
    top: 0;
    height: 210px;
  }
  .review-avatar {
    width: 84px;
    height: 84px;
    margin-top: -48px;
  }
  .footer-inner {
    gap: 14px;
    min-height: 136px;
  }
  
}
@media (max-width: 576px) {
  .page-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header .page-container {
    align-items: flex-start !important;
    /* flex-direction: column; */
  }
  .hero h1 {
    font-size: 27px;
  }
  .mini-card {
    width: 100%;
  }
  .feature p {
    display: none;
  }
  .feature-grid .col-6 {
    width: 50%;
  }
  .feature-grid {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }
  .site-header {
    height: auto;
    padding: 16px 0;
  }
  .brand img {
    height: 36px;
  }
  .demo-top {
    min-width: 104px;
    min-height: 32px;
    font-size: 13px;
    padding: 8px 30px 8px 18px;
  }
  .demo-top span {
    width: 26px;
    height: 26px;
    right: 0;
    font-size: 12px;
  }
  .hero-form,
  .cta-form {
    max-width: 100%;
  }
  .demo-card {
    padding: 24px 18px;
  }
  .form-control {
    height: 44px;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .service-card {
    flex-basis: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 280px;
  }
  .services-track.slick-initialized .slick-slide > div {
    width: min(100%, 250px);
    margin-left: auto;
    margin-right: auto;
  }
  .services-track.slick-initialized .service-card {
    width: 100%;
    max-width: 250px;
    min-width: 0;
    margin: 0 auto;
    margin: 0 3px;
    padding: 14px;
  }
  .services-track {
    animation-duration: 24s;
  }
  .dynamic-forms-card {
    padding: 20px 16px 22px;
  }
  .dynamic-forms-card h3 {
    font-size: 21px;
    line-height: 1.3;
  }
  .dynamic-forms-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  .dynamic-forms-list {
    gap: 12px;
    margin-top: 20px;
  }
  .dynamic-forms-list li {
    /* padding-left: 32px; */
    font-size: 14px;
  }
  .blob {
    width: 110px;
    height: 100px !important;
    margin-bottom: 22px;
    font-size: 21px;
  }
  .section-soft2 {
    background-size: 120%;
    background-position: left bottom;
  }
  .why h2,
  .section-title h2,
  .testimonials h2 {
    font-size: 24px;
  }
  .why-img {
    max-width: 100%;
  }
  .cta-text {
    padding-top: 28px;
  }
  .cta-text h2 {
    font-size: 24px;
  }
  .section-soft3 {
    padding: 68px 0 64px;
  }
  .testimonial-card {
    padding: 24px 18px 18px;
    min-height: auto;
    border-radius: 20px;
  }
  .testimonials-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    animation-duration: 20s;
  }
  .testimonials-track.slick-initialized .slick-slide > div {
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-card {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 20px 14px 16px;
    border-radius: 18px;
  }
  .testimonials-track.slick-initialized .testimonial-card {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    margin: 4px;
  }
  .testimonial-card p {
    font-size: 12px;
  }
  .review-avatar {
    width: 64px;
    height: 64px;
    margin-top: -36px;
  }
  .footer-inner h3 {
    font-size: 20px;
  }
  .footer-call {
    font-size: 14px;
    gap: 10px;
  }
  .footer-call-icon {
    width: 34px;
    height: 34px;
  }
}
@keyframes testimonials-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
.whatsapp-sticky-btn {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

.whatsapp-sticky-btn::before,
.whatsapp-sticky-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 101, 0.731);
    z-index: -1;
    animation: whatsapp-ripple 2.4s infinite;
}

.whatsapp-sticky-btn::after {
    animation-delay: 1.2s;
}

.whatsapp-sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    color: #fff;
    animation-play-state: paused;
}

.whatsapp-sticky-btn:hover::before,
.whatsapp-sticky-btn:hover::after {
    animation-play-state: paused;
}

.whatsapp-sticky-btn i {
    font-size: 30px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

@keyframes whatsapp-ripple {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes whatsapp-bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    8% {
        transform: translateY(-4px);
    }

    12% {
        transform: translateY(0);
    }

    16% {
        transform: translateY(-2px);
    }

    20% {
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .whatsapp-sticky-btn {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-sticky-btn i {
        font-size: 28px;
    }
}
